i want to center a div called #top_menu

<div id="top_menu">This is the menu and it is in the middle of the page</div>

CSS-Code:

#top_menu { margin: 0 auto; width: 600px; ... }

To the left of the top menu should be a logo (#logo)

This is what i have so far:

#logo { position: absolute; top: 0px; left: 10px; width: 200px }

Now comes the problem

If i have a browser window that is smaller than 800px the center div overlays the logo div. It would be nice if there are scrollbars instead. How do i do this?

Thanks in advance! Freddi

link|improve this question
2  
Could you create an example at jsfiddle.net for us? – fabsn Mar 11 '11 at 16:33
To see it in action: beta.sportpreis24.de – Freddi Mar 11 '11 at 16:41
Thanks. Now where should the logo appear? On the left side of the menu, outside of those 600px or inside but pushing the menu to the right? – fabsn Mar 11 '11 at 16:46
It should appear always on the top left (top: 0px, left:0px;) not pushing the menu to the right. Outside of those 600px. – Freddi Mar 11 '11 at 16:54
feedback

3 Answers

up vote 1 down vote accepted

Do this,

#top_menu{
    width:800px;
    margin:0 auto; 
    border:1px solid red;
    display:block;
}

#logo { 
    float:left;
    width: 200px;
    height:50px;
    background:white url(logo.png) no-repeat 0 0
}

Now your divs will not overlap when window size is smaller.

Check working example at http://jsfiddle.net/WV8q7/3/

link|improve this answer
feedback

Got it:

#logo
{
    float: left;
}

AND

#top_menu
{
    margin: 20px auto 0;
    height:29px;
    width: 602px;
}

HTML

<div id="logo"><img src="<?=site_url('img/logo.jpg')?>" /></div>

        <div id="top_menu">



            <ul id="top_links">
                <li><a href="<?=site_url()?>">Startseite</a></li>
                <li><a href="<?=site_url('static/impressum')?>">Impressum</a></li>
            </ul>
        </div>
link|improve this answer
feedback

try this (in css) :

#top_menu { overflow: auto; }

You must have your logo tag inside the div tag, of course.

link|improve this answer
okay, now the logo is inside the box. i tried to { position: absolute; left: 0} nothing. logo still inside the box. – Freddi Mar 11 '11 at 16:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.