Center thumbnails within div

Phreaddee

Super Moderator
Staff member
wow theres quite a lot going on in that code.
but namely this must be fixed first. there is no opening <html> tag.
also the scripts are sitting between </head> and <body>
 

chrishirst

Well-Known Member
Staff member
Image elements are at inline level so are controlled with the text-align property of the parent.
 

chrishirst

Well-Known Member
Staff member
Well I'll not be doing that again in a hurry, definitely a serious case of "code bloat" going on there!

When you set images to be display: block they stop behaving as inline elements and behave like block elements.

And centering of a block element is done with setting left and right margins to auto.
 
Top