MyBB Community Forums

Full Version: change tabs color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello guys i'm wondering from where can i change the tabs color?


help is appreciated
Find:

.menu ul a:link, .menu ul a:visited

and change color: #CCCCCC;
Change it in your themes CSS it should be called .menu
You can also make those links look like tabs:

.menu ul a:link, .menu ul a:visited

Add this:

border: 1px solid #000000;
background: none repeat scroll 0 0 #000000;

Replace #000000 with your color.

Backup your code first just in case you know what I mean.


Also find:

.header

then change height: 90px; to height: 80px;
it worked thanks Smile