Advertise Here

Author Topic: A Little Help  (Read 1707 times)

0 Members and 1 Guest are viewing this topic.

Offline nickrulz1

  • SMF For Free Hero
  • *
  • Posts: 546
  • The Off Topics Owner
    • View Profile
    • The Off Topics

  • Total Badges: 19
    Badges: (View All)
    Topic Starter Combination Level 4 Level 3 Level 2
A Little Help
« on: February 02, 2008, 06:12:36 am »
Forum Url: http://eternity.smfforfree4.com
hey. i am using Gotham City of Darkness style and the navigation text is black and i wanna change it to white

can someone tell me were in the css i can find it

Offline Celebrus

  • SMF For Free Hero
  • *
  • Posts: 941
    • View Profile
    • Vikhyat Korrapati

  • Total Badges: 16
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: A Little Help
« Reply #1 on: February 02, 2008, 08:36:56 am »
.maintab_back a section, I think. If you can't find it, you should add this:
Code: [Select]
.maintab_back a
{
      color: white!important;
}

Sorry, too lazy to get the section from the CSS so just add that somewhere in your CSS.

Offline LaundryLady

  • Helpers
  • *
  • Posts: 3253
  • Internet Challenged
    • View Profile

  • Total Badges: 26
    Badges: (View All)
    Seventh year Anniversary Sixth year Anniversary Search Poll Voter Level 5
Re: A Little Help
« Reply #2 on: February 02, 2008, 09:54:45 am »
You probably don't want to be adding extra's in the css. 

This is the piece you want:

Code: [Select]
/* how links behave in main tab. */
.maintab_back a:link , .maintab_back a:visited, .maintab_active_back a:link , .maintab_active_back a:visited
{
color: #be1200;
text-decoration: none;


And I Play:  Mafia-Mandemz

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: A Little Help
« Reply #3 on: February 02, 2008, 10:28:29 am »
Forum Url: http://eternity.smfforfree4.com
hey. i am using Gotham City of Darkness style and the navigation text is black and i wanna change it to white

can someone tell me were in the css i can find it

er guys he was not asking about the tabs.   His tab font colors are already white.    ;)
He wants to change the navigation text -  that is under the tabs.
 
nick the Navigation link color and also the hover color for it are changed here:

Code: [Select]
/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
color: #000000;
text-decoration: none;
}
a.nav:hover
{
color: #7A7A7A;
text-decoration: underline;
}


Change #000000 to #FFFFFF and you'll be all set

Offline nickrulz1

  • SMF For Free Hero
  • *
  • Posts: 546
  • The Off Topics Owner
    • View Profile
    • The Off Topics

  • Total Badges: 19
    Badges: (View All)
    Topic Starter Combination Level 4 Level 3 Level 2
Re: A Little Help
« Reply #4 on: February 04, 2008, 07:32:22 am »
thanks mate!!!