Stumped

fromthe5

New Member
I'm working on a new site. http://www.allsolutionstree.com The graphic I created for the bottom of each page looks fine in FireFox, however in IE the graphic will not fit snugly at the bottom of the page. There is a space under it that I can't seem to get rid of. Maybe I'm missing something obvious. Any suggestions? (The only two pages currently working are the index page and "Snow Plowing".)
 

sheanhoxie

New Member
Apply a style to that image that aligns to the bottom

Code:
<img style="vertical-align: bottom" src="images/trees-2.jpg" />
 

sheanhoxie

New Member
Also, you will want to include alt within the img file to describe the picture. This helps with SEO and also with people who have limited vision and use a reader to browse the web (accessibility)

Code:
<img style="vertical-align: bottom" src="images/trees-2.jpg" alt="Trees" />

Somethin like that.... :)
 

fromthe5

New Member
Right you are, although for SEO purposes "alt tags" are way down on the list. Nevertheless, if you follow the "Every Possible Advantage" school of thought (and I do) it certainly won't hurt you unless you overdo it. I get to those when I do the code adjustments for SEO. That way I can come at them with an overview and keep the theme flowing naturally.
 
Top