Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

how do you make seperate hyperlink styles


beuleux

Recommended Posts

Posted

I was trying to make the links in my site have different hyperlink effects using css but for some reason that escapes me it doesnt seem to work. Say I wanted the page links to behave differently than the rest one would assume just ading something like a.whateverbox:hover would work but obviously Im missing something simple. Anyone know what it is please let me know

Posted
I was trying to make the links in my site have different hyperlink effects using css but for some reason that escapes me it doesnt seem to work. Say I wanted the page links to behave differently than the rest one would assume just ading something like a.whateverbox:hover would work but obviously Im missing something simple. Anyone know what it is please let me know

 

Try making it a class.

 

for example, on your link add in the class name:

 

<a href="http://www.google.com" class="specialLink">Google</a>

 

then for your CSS something along the lines of...

 

 

a.spcialLink:hover

{

color:#00000;

text-decoration: underline;

}

Posted
Try making it a class.

 

for example, on your link add in the class name:

 

<a href="http://www.google.com" class="specialLink">Google</a>

 

then for your CSS something along the lines of...

a.spcialLink:hover

{

color:#00000;

text-decoration: underline;

}

That works fine for links in the body and new boxes but if the left and right margins are dark and you want white links then all the links in the white main page will be white also like the product names prices etc. I have looked in the boxes.php and cant find where the class is defined.

Posted

Most links use the A class. You can change that or create a new class as suggested. If you create a new class, then you have to trace down the all of the links you want changed and change the code to use the new class.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

All of My Addons

Get the latest versions of my addons

Recommended SEO Addons

Archived

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

×
×
  • Create New...