View Single Post
Old 05-05-2008, 06:02   #2 (permalink)
herkalees
Semantics, yay.
 
herkalees's Avatar
 
Join Date: Nov 2005
Location: Salem, Massachusetts
Posts: 1,088
The easiest way to do it would involve the use of the position property. Change your CSS to this:
HTML Code:
div.header { position: relative; height: 100px; background: url(...header_bg.gif); } div.header h1 { display: none; } div.header img { float: right; margin: 0; } div.header a { position: absolute; top: 75px; /*Change this value*/ left: 10px; /*Change this value*/ float: left; margin: 0 0 25px; }
__________________
  Reply With Quote