Author Topic: a small help needed!  (Read 993 times)

Offline cooldude

  • Newbie
  • *
  • Posts: 3
a small help needed!
« on: Apr 07, 2012, 03:40:22 »
hey guys can you please tell how to change color of text n the forums.....

Offline agent47

  • Support Team
  • Hero Member
  • *
  • Posts: 817
  • At your service?
    • Superhero Alliance
Re: a small help needed!
« Reply #1 on: Apr 07, 2012, 04:10:59 »
Open index.css

Search for the following line:
Code: [Select]
body, td, th, tr
{
color: #444;
}

Change #444 to whatever the color code that you require.  :)

Wedge is the way to go

Offline cooldude

  • Newbie
  • *
  • Posts: 3
Re: a small help needed!
« Reply #2 on: Apr 07, 2012, 08:48:36 »
Thanks agent,  :) but it changes only the test color...actually i want to change the board name color and other texts like who online etc..
« Last Edit: Apr 07, 2012, 08:53:08 by cooldude »

Online ARG

  • GFX Designer
  • DS Friend
  • Hero Member
  • *
  • Posts: 5646
  • Civilian Support
    • Files4Design
Re: a small help needed!
« Reply #3 on: Apr 07, 2012, 10:08:16 »
Which theme are you using?

On average the link colors can be changed here in index.css:
Code: [Select]
a:link, a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

Depending on the theme there may be other areas that need changing as well.

Board name colors are normally under something like this:
Code: [Select]
.table_list tbody.content td.info a.subject {
    color: #FFFFFF;
    font-size: 110%;
    font-weight: bold;
}

Category text/link colors are normally under something like this:
Code: [Select]
h3.catbg a:link, h3.catbg a:visited, h4.catbg a:link, h4.catbg a:visited, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a {
    color: #FFFFFF;
}

Chane the #FFFFFF to the color of your choice.  ;)

« Last Edit: Apr 07, 2012, 10:23:09 by ARG »
Michigan Skywarn

If I don't respond to a specific topic, please don't take it personal. It's either because someone else has already given an answer or, I have no answer.