View Single Post
  #6  
Old 12-26-2006, 04:09 PM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default Re: Category Box rollover

You can also try this technique:

your table cell will start something like:
Code:
<td width="{$width}%" class="listing" onmouseover="this.className='listing2'" onmouseout="this.className='listing'">

and the corresponding css might look like:

Code:
.listing { border: 1px solid; padding: 7px; border-color: #E5E5E5; background: #FFF0F5; text-align: center; } .listing2 { border: 1px dotted #845974; padding: 7px; background: #C3E9EB; text-align: center; }
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote