php code search

php code search

by Jennifer LaVoie Constant -
Number of replies: 2

Hello

I need to change the color of links in the reply to a forum post.  Can someone point me to the right bit of code in config.php

See the circled bit below in the picture to see what I am talking about.

thanks!

Jennifer

help

Average of ratings: -
In reply to Jennifer LaVoie Constant

Re: php code search

by Richard Watkins -

Although I've never done this, I would guess the place to start looking is the theme directory. Each theme has a seperate folder with config.php defining colours and styles.php defining the styles (which uses some of the colours defined in config.php).

In reply to Jennifer LaVoie Constant

Re: php code search

by Marc Dastous -

You're close Richard...

Jennifer, to accomplish what you are trying to do, you will have to edit your styles.php, within the theme directory you are using.

Look for some code like this:

a:link {

text-decoration: none;

color: blue;

}

Granted this changes ALL the linked text to this color.  If you are trying to just change within the forum, you would have to add additional code and I'm not sure what that would be or where that would go.

Marc