Author Topic: Font color  (Read 1198 times)

Offline marinbajic

  • Jr. Member
  • **
  • Posts: 14
Font color
« on: Apr 19, 2012, 09:35:06 »
Hi all i have a question.How to change Font color and Tab color?I am using SMF 2.0.2 and im new with SMF´s and edit.Please help.





I want it in blue.
Theme is Mystic Jade

Offline agent47

  • Support Team
  • Hero Member
  • *
  • Posts: 822
  • At your service?
    • Superhero Alliance
Re: Font color
« Reply #1 on: Apr 19, 2012, 10:18:02 »
Open index.css and find the following lines:

Code: [Select]
a:link, a:visited
{
color: #869927;
text-decoration: none;
}

Replace #869927 with whatever color code that you require.

And to change colors on menu items (Search, Admin, Moderate, Profile........) find the following lines:
Code: [Select]
#topnav li a {
display: block;
float: left;
padding: 0 15px;
line-height: 35px;
color: #fff;
font-weight: bold;
background: url(../images/custom/toolbar-div.png) 100% 0 no-repeat;
}

Again replace the #fff with the desired color code. ;)

Wedge is the way to go

Offline marinbajic

  • Jr. Member
  • **
  • Posts: 14
Re: Font color
« Reply #2 on: Apr 19, 2012, 11:08:11 »
Thanks!And more one question.How to change Submenu color?

Offline ARG

  • GFX Designer
  • DS Friend
  • Hero Member
  • *
  • Posts: 5657
  • Civilian Support
    • Files4Design
Re: Font color
« Reply #3 on: Apr 19, 2012, 12:01:55 »
Find this in index.css and change the #7d9325 to your desired color.  ;)

Code: [Select]
#topnav li ul {
background: #7d9325;
border: 1px solid #607316;
position: absolute;
width: 200px;
left: -999em;
padding: 4px 0;
margin-left: -1px;
}
I no longer work here. Please stop sending me messages asking for premium theme support. That is what the Support Boards are for. Thank You!

Offline agent47

  • Support Team
  • Hero Member
  • *
  • Posts: 822
  • At your service?
    • Superhero Alliance
Re: Font color
« Reply #4 on: Apr 19, 2012, 12:12:08 »
:cheers:

Wedge is the way to go

Offline marinbajic

  • Jr. Member
  • **
  • Posts: 14
Re: Font color
« Reply #5 on: Apr 19, 2012, 14:10:24 »
Wow guys.Thank you!