| | |||||
| ||||||||
| Web Design Discussion Discussion of web design techniques, advice, browser issues, software, design firms. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Regular Join Date: Jun 2005 Location: Belgium
Posts: 326
![]() ![]() ![]() | question about making a design hello, I have a question for the webdesigners ( not coders ) amongst us. i want to make my own design, but i'm pondering about what size to use in photoshop, so what is the standard width for a webdesign nowadays ( in pixels ) thanks Jurrie |
| |
| | #4 (permalink) |
| Senior Member Join Date: Sep 2006 Location: London, UK
Posts: 1,922
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | I mostly use 960px. I have used 980px too but rarely. 1024px wide screen resolution is common resolution for most 17" monitors and 10" netbook monitors. The scrollbar will take 17px on windows XP. If you make the site wider than 1007px then those 17" monitor and 10" netbook users will see a horizontal scrollbar because the page will not fit. Since 17" monitors have become less and less common over the last few years, I was planning to design for 19" which has 1280px wide standard resolution. But with the introduction of netbooks I will stick with designing for 1024px. Btw, I never use photoshop for web design. I always start with something like this and continue from there: Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
margin: 0px;
padding: 0px;
}
#container {
width: 960px;
margin-right: auto;
margin-left: auto;
}
#header {
height: 100px;
background-color: #E8E8E8;
}
#content {
height: 500px;
background-color: #D7D7D7;
}
#footer {
height: 100px;
background-color: #CCCCCC;
}
-->
</style>
</head>
<body>
<div id="container">
<div id="header">header</div>
<div id="content">content</div>
<div id="footer">footer</div>
</div><!-- end container -->
</body>
</html> |
| |
| | #11 (permalink) |
| NamePros Regular Join Date: Apr 2007 Location: Texas
Posts: 451
![]() ![]() ![]() ![]() | I believe differently than the others here. If your target demographic is 18-25 year old gamers, then use 1024 and up. But, if your target audience is in the baby boomer generations, then you need to design your site at 800x600. I personally hate 800x600, and one day it will be irrelevant. My favorite width is 960px.
__________________ OtherInvestments.com |
| |
| | #12 (permalink) |
| NamePros Member Join Date: Jun 2010 Location: karthimx@gmail.com
Posts: 128
![]() ![]() ![]() ![]() | you can use any size above 700 px width. Make sure it set as pixels in photoshop. Normal size will be 1024px wide and 900px height.
__________________ Custom Banner Design for just $6 | Play Free Flash Games | Free Wordpress themes | Top Android Application |
| |
| | #16 (permalink) |
| New Member Join Date: Sep 2010
Posts: 10
![]() | You can opt for the resolution of 1024 x 768 in the first few days. Most of the analytics software allow you to get the resolution of the client. If there are variety of resolutions, you can try fluid layout which will be easier to maintain. |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |