I am trying to put two banners on top of a navigation bar with everything nicely centered. I can get the two banners to nicely sit by one another but when I make the browser window smaller the first banner goes on top of the second!

Is there a code where I can prevent this??? If so please let me know.

Thank you very much. =]

This is what I have so far:

<center>  
<a href="loanworkout.org">
    <img width="200" height="60" src="header-2.gif">
</a>
<a href="htpp://www.modifyloan.net">
    <img width="660" height="60" src="loansafe_728x90.gif">
</a> 
<BR>
link|improve this question
You're always better off posting code to go with your problem, otherwise it's difficult to tell what it could be. – Dan Breen Jul 17 '09 at 20:19
Ok so here is the code to the two banners and the navbar follows. <center> <a href="loanworkout.org"><img width="200" height="60" src="header-2.gif"></a><a href="htpp://www.modifyloan.net"><img width="660" height="60" src="loansafe_728x90.gif"></a> <BR> – d0cpaul Jul 17 '09 at 20:23
And if you post your code in your question (use the 'edit' link, below the text of your question) we can understand it a little better. Probably. – David Thomas Jul 17 '09 at 20:37
AHHH! <center>! – tj111 Jul 17 '09 at 20:47
feedback

1 Answer

You can set a min-width on the container of the banners.

Edit based on your comment:

<center> <!-- *shudder* -->
    <div style="min-width: 860px;"> <!-- inline only for example purposes -->
        <a href="loanworkout.org">
            <img width="200" height="60" src="header-2.gif">
        </a>
        <a href="htpp://www.modifyloan.net">
            <img width="660" height="60" src="loansafe_728x90.gif">
        </a> 
    </div> <!-- ditch the BR -->
    ... 
</center>
link|improve this answer
Woot! Very HTML4-ish <center> tag. :D – Adrian Godong Jul 17 '09 at 20:31
its in the example! :( – blu Jul 17 '09 at 20:32
Yeah; but don't pretend like you don't feel dirty now... =) – David Thomas Jul 17 '09 at 20:36
You like that hah. OK maybe I'm not being clear. This is what I want it to look like: <----Banner 1----><----Banner 2----> <-------------navbar---------------> See everything is centered and looking nice... then when I reduce the size of the window it looks like this. <----Banner 1----> <- See how Banner 1 ends up on Banner 2. <----Banner 2----> <-------------navbar---------------> Even with the code posted by blu I seem to be having some problems. – d0cpaul Jul 17 '09 at 20:43
I had the width wrong. The min-width has to be at least the width of the two elements, I had 800, not 860. If your images have borders on them, those need to be in the number too. – blu Jul 17 '09 at 20:46
show 2 more comments
feedback

Your Answer

 
or
required, but never shown