tags:

views:

881

answers:

2
A: 

I can't seem to figure out what you are trying to achieve. Could you please create some basic sketch in MS Paint or something so we could help you?

EDIT: Maybe I don't understand something here, but this is exactly how it looks in my Chrome window (well, apart from the paddings).

DrJokepu
I agree. I am going to guess that he needs to float both divs (to the right and left) and have some sort of clear'ing element after, if he can't change the div order or anything else.
Nick Presta
Sure, I added the image.
Luca Matteis
+2  A: 

Try:

div.menu div {
    float: left;
    clear: left;
}
div.menu div.right {
    float: right;
    clear: right;
}
Prestaul