MyBB Community Forums

Full Version: CSS Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Guys how do I add css styling to this class?

I have created second <ul class="menu top_links"> and I want to change CSS to one of them only!

#panel ul.menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

I want to change it to
#panel ul.menu {
    list-style: none outside none;
    margin: -1px;
    padding: 0;
}
Change it to <ul class="top_links">

and add this in your css:

#panel .top_links {
    list-style: none outside none;
    margin: -1px;
    padding: 0;
}
I can't remove menu because it adds styling to that ul
Then try this:

#panel .top_links {
    margin: -1px !important;
}

It should override the menu's margin.
Maybe I can do this
<ul class="share menu top_links">
#panel ul.share {
    margin: -1px !important;
}
(2013-10-31, 05:19 PM)marcus123 Wrote: [ -> ]Maybe I can do this
<ul class="share menu top_links">
#panel ul.share {
    margin: -1px !important;
}

Oh sure, I thought that you added top_links as a customization.
Thanks @QuantumHive for your support
You're welcome <3