I am really struggling with this and have been at it for quite some time.
I have a background image with a logo and I want a div in the center such that it doesn't block the BEE image in the background. Working Example here (this is fine as it doesn't block the image): http://jsbin.com/ubanuf/9
However, now I want to add another div right to the left of the red div with some margin in between of about 10pixels. However, when I do this everything moves towards the right and my logo in the background is blocked by the divs. Example here: http://jsbin.com/ubanuf/10
If I remove margin: 20px auto 0 from main-controller then things look decent until I look at the page in 1680 X 1050 resolution. In this resolution everything seems to be shifted towards left. so now there is a huge gap in between where red div stops and the bee image begins. Screen shot here: http://i53.tinypic.com/25qqk4h.png
Why is it that I can't place the yellow div right next to the red div with margin of 10 px between them
My requirements are:
- Red div to be 750 px
- Yellow div to be around 200 px
- both next to each other with about 10 px margin between them
- and bee image should not be blocked
Is this possible to do at all?