carrie1431 Posted November 6, 2008 Share Posted November 6, 2008 I HAVE CHANGED ALMOST EVERYTHING TO TO COLOR I WANT BUT I CANT LOCATE WHERE TO CHANGE THE COLOER FOR THE PAGES #1 #2 #3 ECT. THE #1 PAGE IS THE COLOR I WANT, BUT 2,3,4,5,6 ECT IS BLACK UNLESS YOU SCROLL OVER IT SO IT SAYS I HAVE EXAMPLE 100 PRODUTS UNDER A CATEGORY, BUT IT LOOKS LIKE I ONLY HAVE 20 UNLESS YOU SCROLL OVER I WANT THE TEXT TO BE RED SO IT SHOWS HOW MANY PAGES I HAVE. THE BACK GROUND IS BLACK SO THE PAGES I GUESS ARE ALSO BLACK WHERE ARE THESE CODES LOCATED? THANKS CARRIE Link to comment Share on other sites More sharing options...
Enzio_Ferrari Posted November 6, 2008 Share Posted November 6, 2008 To change the colour of any text - at least in HTML - you use the (< font color=#xxxxxx>) command and end with the (</font>) - without the brackets - where each of the 'x's control one bit of the colour chart in hexadecimal (0-F) the first two entries are for the intensity of red, the middle two are for green and the last two for blue. Alternatively you can replace the #xxxxxx with the name of a 'recognised' colour eg. "Red", "Blue", "Royal Blue", etc. The quote marks are part of the command. PS. You can swap the color= command with name=, size=, etc for even more options. When all else fails ... RTFI ... then ... GIVE UP! Link to comment Share on other sites More sharing options...
ozEworks Posted November 6, 2008 Share Posted November 6, 2008 I think you are askng how to change the color on the product listing page where there is more than one page to display. At any time you can look at the page source and find the text that you want to change the color of and look at what CSS class is being used. It looks like this code <td class="smallText">Displaying <b>1</b> to <b>9</b> (of <b>9</b> products)</td> So it is smallText in the CSS. Link to comment Share on other sites More sharing options...
carrie1431 Posted November 6, 2008 Author Share Posted November 6, 2008 I think you are askng how to change the color on the product listing page where there is more than one page to display. At any time you can look at the page source and find the text that you want to change the color of and look at what CSS class is being used. It looks like this code <td class="smallText">Displaying <b>1</b> to <b>9</b> (of <b>9</b> products)</td> So it is smallText in the CSS. THIS IS THE ONLY THIG I SEE ON SMALL TEXT I CAN CHANGE THE SIZE, BUT THEIR IS NO COLOR?IS THIS WHERE I LOOK? TD.smallText, SPAN.smallText, P.smallText { font-family: Verdana, Arial, sans-serif; font-size: 10px; } Link to comment Share on other sites More sharing options...
Enzio_Ferrari Posted November 6, 2008 Share Posted November 6, 2008 THIS IS THE ONLY THIG I SEE ON SMALL TEXT I CAN CHANGE THE SIZE, BUT THEIR IS NO COLOR?IS THIS WHERE I LOOK?TD.smallText, SPAN.smallText, P.smallText { font-family: Verdana, Arial, sans-serif; font-size: 10px ?font-color? xxxxxx; } Without the ?'s and with xxxxxx replaced with an hexadecimal quantity as described earlier. Otherwise ... :unsure: When all else fails ... RTFI ... then ... GIVE UP! Link to comment Share on other sites More sharing options...
ozEworks Posted November 6, 2008 Share Posted November 6, 2008 If it does not have a color then add it. Link to comment Share on other sites More sharing options...
carrie1431 Posted November 6, 2008 Author Share Posted November 6, 2008 If it does not have a color then add it. I FOUND IT!!! IT WAS PAGE RESULTS THANKS FOR YOUR HELP!!!!!! A.pageResults { color:#FFFFFF; } A.pageResults:hover { color:#EA0808; background:#000000; } Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.