If you started to use a custom layout, you may have expirienced, that the sidebar is rendered below the content, and not where it should be: beside the content.
To fix this we will add the following rule to the base.css in the next days.
#content { float: left; }
#sidebar { float: right; }
body { text-align: center; }
#container { margin: 0 auto; text-align: left; }we also fixed the default layout of the blog title in the banner:
#banner-header {
font-size: 2em;
font-weight: normal;
margin: 0.3em 0.2em;
}you may copy these two rulesets to your custom stylesheet to test it with your own design.


1 comment
1. christoph, Jul 28, 2006 11:05:56 AM #
thanx. thats what i have wated for!