MyBB Community Forums

Full Version: Different Color Menu Bar?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Try this out. in the "Extra CSS Attributes" box under "Top Links Menu" insert the following code
background: #DCC4D1 url(your/bg/image.gif) top left repeat-x;

only change #DCC4D1 with the color you want and "your/bg/image.gif" with the path of the BackGround image you want
No it didn't work Sad
This is happening because this menu is in a td with thead as a class.. if you change the css of the toplinks menu nothing will happen.

We will do some fixing...
In the header template

find
 <center><div class="logo">

replace with
<div class="logo" align="center">

find
 valign="middle"></center>

remove </center>.This way is better.. and still the center tag was placed all wrong.

Now to the coloring...

find

<td class="thead" valign="middle" align="center" style="margin-top: 2px">

change thead to menu

Now in the themes manager... find Top Links Menu (Customized in this style)

There you find an input for the background put
#026CB1 url(images/image.gif) top left repeat-x
As pepotiger said in his post.. modify the colors and images... however please remove the code he asked you to add..as there is not need to add to the Extra CSS Attributes


regards
That worked Zaher! thanks so much Smile
Pages: 1 2