Log in

View Full Version : Vertical Align Problem...



Rockonmetal
05-19-2007, 03:53 PM
http://rotsod.bravehost.com/merch.html
Thats the link to the site...
Problem:
As you probably can see, the box with the menu *right box* needs to move it out the way for the background. If it can be anywhere closer to the bottom *or on the bottom* that would help... I am pretty good with CSS. I TRIED V-Align: bottom, Vertical-Align: bottom; , and that didn't work...

Thanks everyone...

Veronica
05-20-2007, 04:35 PM
Relative moves an element relative to its normal position. So if you want the div called menuright to be, for example, 300 px lower than it is, try adding this to the css for menuright:

position:relative;
top:300px;