Thread: Quick question
View Single Post
  #4  
Old 01-23-2008, 11:07 PM
  gb2world's Avatar 
gb2world gb2world is offline
 

X-Wizard
  
Join Date: May 2006
Location: Austin, TX
Posts: 1,970
 

Default Re: Quick question

You can trace css easily with firefox and the firebug addon. With firebug, you can inspect an element. You just mouse over an element on your page and it tells you what css is controlling it.

Using firefox/firebug, it looks like you might be assigning the class="VertMenuItems" incorrectly if you want it to use the defined hover.

You have:
<a class="VertMenuItems" href="***"><font class="VertMenuItems">Secure login </font></a>

Which seems strange - the font class is defeating the a link properties that you have set up. Try removing the font.

<a class="VertMenuItems" href="***">Secure login</a>
__________________
X-CART (4.1.9,12/4.2.2-3/4.3.1-2/4.4.1-5)-Gold
(CDSEO, Altered-Cart On Sale, BCSE Preorder Backorder, QuickOrder, X-Payments, BCSE DPM Module)
Reply With Quote