How do I design a website that is viewable at any resolution?
ByI am currently using WebEasy 6 Professional to design my web site but I am having a hard having my web site look consistent in different resolutions. Under page size, I can only 1024 x 768 Pixels, 640 x 480, 800 x 600, 254 x 164, or user defined. I know that everyone who surfs the Internet does not use the same page resolution, so how do I create a consistent looking page?
I have no idea what CSS is and it is very intimidating. Is there an easier way?
No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.
3 Comments
May 30th, 2010 at 3:14 pm
Use a Cascading Style Sheet (CSS) Once you create the base, you can just reuse it.
May 30th, 2010 at 3:14 pm
Hand code it with tutorials from w3schools.com Learn basic css. Not only will your site be much smaller but it will work for any resolution.
My sites layout is only 400 bytes.
May 30th, 2010 at 3:14 pm
simplest way is to use percentages in the width settings in your html.
this two-column table will fit the full width of the screen.
<table width=100%>
<tr>
<td width=50%></td>
<td width=50%></td>
</tr>
</table>