vote up -3 vote down star

For some reason my site,

www.netivot.biz

or parts of it, "get fat" (tgey take all the screen when they should be 760 pixels) when I use a wide, or large sized monitor. Can you help me fix it?

a similar thing happened with a word press theme that trying to localize, and the original theme looks ok on the "problematic" monitors ...

any advise?

flag

0% accept rate
7  
Want to give us a link? Or a screen shot? Or some code? Something? – jeffamaphone Nov 5 at 18:52
3  
How about some code? – jjclarkson Nov 5 at 18:52
1  
you must give code or url.....without them noone can help you – cupakob Nov 5 at 18:52
1  
"distorsioned" is an interesting way of describing it... – Eric Nov 5 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 at 19:03
show 2 more comments

5 Answers

vote up 4 vote down

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|flag
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 at 19:28
define a margin ;) – Nathan Campos Nov 5 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 at 21:30
vote up 8 vote down

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

link|flag
vote up 3 vote down

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|flag
Surprisingly, this actually could be the solution, haha. People that do that really irritate me. – KyleFarris Nov 5 at 19:32
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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