I have designed website, it looks perfect in my pc but when i check to another pc and also on another browser, it looks different like images are not in their place. what should we do for browser compatibility?
based on January 2010 statistic, 76% user browse on screen with resolution higher than 1024x768, so keep that in mind when start designing a webpage, and don't forget liquid layout or multiple stylesheet
My guess is that it's bad code, not a resolution issue. Look at your site in browsershots.org. If the results look dramatically different from what you intended, then your code is bad. Write valid code and 99% of your display problems will go away.
Wrap your page in a div such as this: <body> <div id="page"> (...the code for your web page...) </div> <!-- // #page --> </body> </html> And apply the following CSS: #page { position: relative; width:940px; margin:0 auto; } Change the width value of your site to whatever your site width should be. Then no matter what the screen resolution your site will always display correctly.