View Single Post
  #2  
MetalMilitia MetalMilitia is offline
Hitler's Canoe!
MetalMilitia's Avatar
Join Date: Sep 2004
Location: UK
MetalMilitia is probably a spambot
Old Feb 23rd, 2008, 03:26 PM       
Do you the Firefox extension Firebug installed? I have a feeling it will tell you were exactly the element you're looking for is within the DOM.

Not sure I understand completely what you're asking though. If you just need a way of applying CSS attributes to classes conditionally, based upon the user's browser you may want to look at "!important". It's a horrible hack but it will cause IE to ignore an attribute and firefox to apply it in preference to any other declaration of the same attribute. So you could have:

top : 1px !important;
top : 2px;

This will mean firefox will use the important attribute in preference and IE will ignore it (because it doesn't support it).
__________________
Quote:
Originally Posted by bigtimecow View Post
japan
Reply With Quote