Click to See Complete Forum and Search --> : Layout and Positioning Help


ohausurfer
06-11-2008, 06:50 AM
I've been given this site to work on :

http://www.teambuildingvenues.co.uk

I've looked at the CSS but cant work out why the partners box is positioned on the edge of the main layout, about 10px to the right of where it should be.

the div is #loginbox but i think its another aspect which is affecting its positioning?

Any help would be great.
J

Centauri
06-11-2008, 10:36 AM
#inner_wrapper is set to 100% width and the left padding adds to this width - the width should be set to allow 18px either side :
#inner_wrapper {
height:100%;
width:904px;
overflow:hidden;
padding-left:18px;
}

ohausurfer
06-12-2008, 02:22 AM
great, thanks!

J