up vote -10 down vote favorite
share [g+] share [fb]

theme looks ok on the "problematic" monitors ...

any advise?

link|improve this question

0% accept rate
10  
Want to give us a link? Or a screen shot? Or some code? Something? – jeffamaphone Nov 5 '09 at 18:52
3  
How about some code? – jjclarkson Nov 5 '09 at 18:52
2  
you must give code or url.....without them noone can help you – cupakob Nov 5 '09 at 18:52
2  
"distorsioned" is an interesting way of describing it... – Eric Nov 5 '09 at 18:54
hi, sorry for that just published it too fast :) the link is www.netivot.biz i think that you can get the code with right mouse right? – qaedus Nov 5 '09 at 19:03
show 3 more comments
feedback

closed as not a real question by user113716, Bill the Lizard Oct 8 '11 at 22:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ.

5 Answers

My very uninformed guess would be that you are specifying some width as a percentage. As the window gets wider, so does that percentage.

What you want is this:

.main-wrapper {
    width: 1336px;
    margin: 0px auto;
}

That'll center it within the window, keeping the width fixed.

link|improve this answer
feedback

It's because in your CSS code you're putting percent values for the width.

My suggestion to you is to put all the page positioned at the center, or where you want to allocate it and use pixels, cm... to your other objects(parts) at your page.

link|improve this answer
i did it in the begining but the page takes all the monitor instead of keep on its 760 px as I defined. – qaedus Nov 5 '09 at 19:28
define a margin ;) – Nathan Campos Nov 5 '09 at 19:43
margin would give me from the borders i want the div to be fix at 760 px how margins would help? – qaedus Nov 5 '09 at 21:30
feedback

The first thing I would check is whether other sites also look distorted on the large monitor, and not just yours. Just like wide-screen TVs in sports bars, there are many mis-configured wide-screen monitors that are stretching 4x3-ratio display resolutions over 16x9-ratio screen sizes. I see it all the time.

link|improve this answer
Surprisingly, this actually could be the solution, haha. People that do that really irritate me. – KyleFarris Nov 5 '09 at 19:32
feedback

I would echo the suggestion to validate the site using W3C - once you have valid code then you can start trouble shooting.

link|improve this answer
feedback

You have several div's in your site with the id "content" You should remove all of these id's for two reasons:

  1. It is invalid (See: W3C "This attribute assigns a name to an element. This name must be unique in a document.")
  2. You do not actually reference it in your CSS -- you use the class "content" instead.

This may not be the cause of the problem you are experiencing -- however, it will cause you problems down the line, and it's always better to have valid markup. If you cannot modify the theme yourself I would suggest switching to a different theme that does produce valid markup, or else asking someone to modify the theme for you.

(A good way to check if a theme produces valid markup is to validate it using the W3C's Validation Service.)

Good luck!

link|improve this answer
feedback

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