Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Haunted by blue text


Brooke

Recommended Posts

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....

picture.jpg

where can i change those evil BLUE page result links???? :wacko:

What? Yeah, I can do that.

Link to comment
Share on other sites

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

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

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

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...