TnMountainMan Posted March 11, 2008 Share Posted March 11, 2008 Greetings, I need to change the black text in the client login and the search areas, but not the rest of the black text. I've made many changes in the header.tpl, footer.tpl and the style.css files and everything else is working out well. I've found a way to change this text color in question, but it also changes the black text everywhere. Is there a separate place to only change the text color in those two locations? Thanks in advance. 0 Quote Link to comment Share on other sites More sharing options...
lesmith Posted March 12, 2008 Share Posted March 12, 2008 Style sheet is the best way to go bro. First open up the style sheet. (Depending on the template you are using). Scroll to the bottom and add a new line. Now there are alot of ways to do this but using a class will do the trick nice and easy for you. so in style.css put this in. .black{ color:#000000;} Then I am not sure where you want the black but here are example for different methods. // Inline Option <p>I would like <span class="black">this to be black</span></p> // Paragraph Option <p class="black">all of this line text will be black</p> //DIV Tag Option <div class="black">Content Here</div> Hopefully from this you will get the idea. 0 Quote Link to comment Share on other sites More sharing options...
TnMountainMan Posted March 12, 2008 Author Share Posted March 12, 2008 Thanks. I appreciate it. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.