MyBB Community Forums

Full Version: .menu ul - how to "merge" elements?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I'm preparing my theme and I've got some problems.
That buttons:
[Image: lollf.png]

Should looks like that:
[Image: lollf.png]

Padding=0. What's going on? How to do that?
Look near ~70% down the stylesheet for .menu li. There's an extra class there with some padding.
.menu ul {
text-align: left;
padding: 0px;
}

Hmmm... I think that there's nothing like that.
No, further down in the stylesheet. You will find:
.menu li {
display: inline;
padding-left: 4px;
}

Or something along those lines.
Thx very much, there wasn't nothing like that, but when I paste that code everything looks great.