View Single Post
  #2 (permalink)  
Old Jan 2nd, 2006, 20:17
bmsterling bmsterling is offline
Junior Member
Join Date: Jan 2006
Age: 30
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Alt tag on image

Browsers are looking for the src="" and you have none
Code: Select all
 <img class="gecko" alt="Website logo/banner" title="Website Banner" />
should be

Code: Select all
  <img src="http://www.surfthegecko.com/images/logo/logo.png"  class="gecko" alt="Website logo/banner" title="Website Banner" />
giving a backgroun image via css will not work right.
Reply With Quote