Brooke Posted August 2, 2006 Share Posted August 2, 2006 Well, I have officially gone insane. I have done SO much customizing to this store but for some reason I cant find what seems like a simple thing.... where can i change those evil BLUE page result links???? :wacko: What? Yeah, I can do that. Link to comment Share on other sites More sharing options...
Dutch317 Posted August 2, 2006 Share Posted August 2, 2006 In the style sheet for the site, look in the stylesheet.css A:link Defines the style for normal unvisited links. A:visited Defines the style for visited links. A:active Defines the style for active links. A link becomes active once you click on it. A:hover Defines the style for hovered links. A link is hovered when the mouse moves over it. you can change these by adding text-decoration: borders, background color, etc. such as: a:link { color: #000000; text-decoration: underline; } a:active { color: #0000ff; text-decoration: underline; } a:visited { color: #008000; text-decoration: underline; } a:hover { color: #ff0000; text-decoration: none; background-color:#cededb; } Link to comment Share on other sites More sharing options...
Brooke Posted August 2, 2006 Author Share Posted August 2, 2006 thanks for the reply, but those settings dont apply to those links. for what reason, i dont know. hence my frustration. and i cant find where else any sort of color attributes may have been added to just that line, since there are no other blue links that i can find anywhere else on the store site. you know, like if someone added inline styles to just that part....i just cant find it. What? Yeah, I can do that. Link to comment Share on other sites More sharing options...
skylla Posted August 2, 2006 Share Posted August 2, 2006 looks like you're using a template. Best to go through all folders and look for .CSS (style) files. Link to comment Share on other sites More sharing options...
Brooke Posted August 2, 2006 Author Share Posted August 2, 2006 looks like you're using a template. Best to go through all folders and look for .CSS (style) files. im not using a template and ive gone through all the CSS this is a store that had pretty much a basic look except a few basic color changes, and now im taking it and redesigning it. so there was a person who did minor look changes before me, who must have done something to make that line appear a different color, but i cant figure out what or where it was done. What? Yeah, I can do that. Link to comment Share on other sites More sharing options...
skylla Posted August 2, 2006 Share Posted August 2, 2006 anything hard coded in includes/classes/split_page_results.php? if not go through your css files again. Link to comment Share on other sites More sharing options...
PD_Steve Posted August 2, 2006 Share Posted August 2, 2006 Check your css again A.pageResults { color: #000000; } A.pageResults:hover { color: #FFFFFF; } Have fun :) My Toolbox: Crimson Editor, Adobe Photoshop CS2.0, Expression Web, Macromedia Suite 8.0, Cinema 4D, Nvu. Link to comment Share on other sites More sharing options...
Brooke Posted August 2, 2006 Author Share Posted August 2, 2006 Check your css again A.pageResults { color: #000000; } A.pageResults:hover { color: #FFFFFF; } Have fun :) *ahem* i love you that was it, right there, staring me in the face. pageResults. duh. sorry, i guess ive been working on this for way too long. What? Yeah, I can do that. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.