RE: Website coding tutorial websites
Adding a margin-top to the image will allow you pixel-fine control of the image location. In fact, since you have two images, assign an ID to each one, then use the '#id' selector to set the margin CSS properties.
Example:
<img src="logo.gif" alt="Logo" id="Logo"/>
with CSS
#Logo {
margin-top: 25px;
}
This post was edited on 03-13-2006 at 12:01 AM by RaceProUK.
|