Could someone please help me with centering the two images "download" and "play now" in the middle of the page: www.my-plague.net I have tried with no luck. You probably don't even need to look at the source code as it is a fairly standard thing i think. thanks
An alternative to <CENTER> which uses CSS/DIV is: <div style="text-align:center;"> <img style="border:none;" src="images/download.gif" alt="download" title="download"> <img style="border:none;" src="images/playnow.gif" alt="playnow" title="playnow"> </div> Code (markup):
Invalid HTML. Try the way nixano metnioned, and if that didn't work, try: <div style="display:block;margin:0 auto"> <img style="border:none;" src="images/download.gif" alt="download" /> <img style="border:none;" src="images/playnow.gif" alt="playnow" /> </div> Code (markup):
Thanks for the help, that works. I did try that to start with and it didn't work. I must have made a typo. thanks for the help blueparukia as well.