[Plone-UI] resizing window messes up layout

Tom von Schwerdtner tvon at baltimoresquirrels.com
Wed Apr 26 17:43:24 UTC 2006


On Wed, 2006-04-26 at 18:25 +0100, Robert Burns wrote:
> Hi
> when we resize the browser window some things are staying fixed whilst
> others are moving, resulting in a right horrible mess?  Check out
> http://www.the-cms-site.co.uk/ to see what I mean.  Any pointers would be
> greatly appreciated.
> Regards
> Rob
> 

1) This belongs on the plone-users list

2) This margin shorthand is not correct, or at least not what you are
trying to do:

#visual-portal-wrapper {
    width: 680px;
    margin: 0 auto auto 155px;;
    padding: 0;
}


The margin shorthand is "top right bottom left", so you want:

    margin: 0 auto 155px auto;


-Tom




More information about the UI mailing list