View Single Post
  #28  
Old 10-19-2008, 02:40 PM
  ARW VISIONS's Avatar 
ARW VISIONS ARW VISIONS is offline
 

X-Man
  
Join Date: Jan 2007
Location: Pensacola, FL
Posts: 2,536
 

Default Re: Couple of Template edits

Are the new images the same size as the old ones? If not you will have to make changes to the CSS to match the new images size. Often they are just a pixel or two of.

To change the link color you need to add a class declaration in the anchor tag.

<a href="product.php?productid={$products[product].productid}&amp;cat={$cat}&amp;page={$navigation_p age}{if $featured eq 'Y'}&amp;featured{/if}" class="white">

Then make a new class.

A.white:link {
COLOR: #ffffff;
TEXT-DECORATION: none;
display:block
}
A.white:visited {
COLOR: #ffffff;
TEXT-DECORATION: none;
display:block
}
A.white:hover {
COLOR: #ffffff;
TEXT-DECORATION: none;
display:block
}
A.white:active {
COLOR: #ffffff;
TEXT-DECORATION: none;
display:block
}
__________________
xcart 5.1.2
Reply With Quote