rockguy
Jul 15 2008, 11:48 AM
ok so i have this layout
Click Here, the borders work fine in IE7 with the
border=0 tags but on firefox there's a border around the images from the navigation (add, mesg, etc) how can i get rid of the border without it affecting it on IE7??
digitalle
Jul 15 2008, 01:45 PM
the border=0 attribute under image style tags only affects IE. to remove the borders in firefox, you'd want to insert it directly into the image tags, if that makes sense. for example, instead of putting in <img src="image url" style="border=0">, you would put in <img src="image url" border=0>.
mipadi
Jul 15 2008, 03:12 PM
Just do this:
CODE
<img src="path/to/file.jpg" style="border:0;">
That should work across all browsers.
rockguy
Jul 15 2008, 08:25 PM
fixed it, thanks for replying
jaeminnie
Jul 15 2008, 08:27 PM
Closed; moved to Resolved.