Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple page ( http://staging.sigmasolve.net/grupo/ ) where the alignment is correct if the resolution is at least 1280 x 768, if I reduce the width of the browser then after a certain width the 3 images on the right side (cheques regalo, -60% and offerato) begin to slide and overlap with the other content on the page. I am not really understanding why this is happening and how to prevent it. Any help is greatly appreciated.

share|improve this question

closed as too localized by casperOne Jun 28 '12 at 11:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

Give to the #containor css rule the min-width: 1024px; if you want it to resize for larger screens, or just set width:1024px and remove the 90% (also remove the inline width, through the style attribute) if you want the width to be fixed regardless of browser size..

share|improve this answer
If you only set min-width, when you resize the images won't stay in the same location, which is probably not what he wants.. – markt Jul 7 '11 at 0:35
@markt, indeed. But i assume that since he uses percentages % he actually want some sort of fluid design. And adding the min-width will solve the overlapping problems.. – Gaby aka G. Petrioli Jul 7 '11 at 0:46
There's nothing fluid about that page. The background image has a limited width and would look odd if that was centered and nothing else was. – markt Jul 7 '11 at 0:48
@markt, i agree with you.. but since the OP has not stated specifically what he wants, i post both solutions.. (something more for the OP to investigate, this way) – Gaby aka G. Petrioli Jul 7 '11 at 0:52
  1. Remove the #containor's width.
  2. Remove all properties from .login-main-box
  3. .orange-but-main, remove float and z-index. Add position absolute and right: 0
share|improve this answer

One thing that you could do is change your #containor css rule. Remove the inline width:80% and the width:90% from the rule, and give it an actual width like 1024px.

share|improve this answer

try this in your css..

div#containor{
  width: 1000px;
  position: relative;
}

.cheques {
position: absolute;
right: 11px;
top: 24px;
}
.ofertas {
position: absolute;
right: 124px;
top: 100px;
}

.small {
position: absolute;
right: 50px;
top: 190px;
}

just change the desired right value you want..on each image. also specify the #containor's width.

share|improve this answer

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