CSS Firefox/other browsers

Messages
6,252
Name
Steven
Edit My Images
No
Hi,

wondering if anyone knows the answer to this

I've added loads of stuff on my site, but the facebook/twitter logos show fine when using Safari for example. when I use firefox I get a box around them stating they are URLs (they are meant to be)

Is this a firefox thing? or would I be able change some CSS to get the logos to display with no border?

I get the following in Safari (normal)

safari.jpeg


and I get this in Firefox

firefox.jpeg


As much as its a small issue its starting to get on my nerves :lol:

Thanks in advance
 
add
Code:
border="0"
in the img bit eg
Code:
alt="" width="48" height="48" border="0"

You may also like to put something in your 'alt' tags to make it more accessible, for instance
Code:
alt="Facebook"
for the Facebook link
 
Last edited:
add
Code:
border="0"
in the img bit eg
Code:
alt="" width="48" height="48" border="0"

You may also like to put something in your 'alt' tags to make it more accessible, for instance
Code:
alt="Facebook"
for the Facebook link

Brilliant, Thank you, thats fixed it

tried the other one for the CSS but that didn't do anything, gone with border =0 and its sorted it

thanks re alt tags to, added facebook, twitter, logo to relevant places
 
Back
Top