A simple question, help!

liunx

Guest
Hello,<br />
I have a logo that I would like to have centered, both Vertical and horizontal on a front page with a white background. Can someone shoot me the code on the simplest way to take care of this.<br />
<br />
Thanks,<br />
James<br />
DataDork<!--content-->Perhaps the best way is to set this in the background using CSS. This will mean that you don't have to muck around with tables to get this sorted.<br />
<br />
The following will help.<br />
<br />
Between the Head Tags include this.<br />
<br />
<head><br />
<style type="text/css"><br />
body {background: white;<br />
background-image: url(../../myimage.gif);<br />
background-repeat: no-repeat;<br />
background-position: 50% 50%;}<br />
</style><br />
</head><br />
<br />
This will center the image on the screen no matter what the screen size is.<!--content-->
 
Back
Top