this is sort of off-topic. I have a css-only layout with 3 rows: header, content and footer. Inside header, there are two boxes (header-links/header-rechts) containing breadcrumbs/jumpmenu. I just cannot seem to position them next to each other.
Here is the site: http://www.uni-leipzig.de/~ialt/cms/ind ... =Impressum
And here is the css:
Code: Select all
#header
{
width:800px;
height:50px;
background-color:#DCDCDC;
border:1px solid silver;
padding:0.3em;
}
#header-links
{
width:250px;
text-align:left;
display:inline;
float:left;
margin:0;
padding:0;
border:0;
}
#header-rechts
{
width:450px;
text-align:right;
display:inline;
float:right;
margin:0;
padding:0;
border:0;
}