asp.net

  • Thread starter Thread starter iulius
  • Start date Start date
I

iulius

Hello,
I created a web application using Visual Studio.The problem is the
"view" depends on the resolution wich I worked on !!! How to solve
this ?
Thank you !!!
 
Hi,

You should use CSS this will make it looks the same everywhere and also
centralize the styles on a single file, if you wanna change some style you
do it in the css file and automatically all the pages using it will update.

You always have to test the page on several resolutions though, I test it
in the lower possible resolution I'm targeting ( 800x600 ) and in 1280x1024
which is widely used.

Cheers,
 
Its not neccessarily CSS that provides the solution to this common
problem for neophytes. The solution is actually a methodology
called 'liquid design' which means essentially 'do not hard code values
in pixels when defining the size of a page element.'

I have no idea how hard coded values may have been used but
generally speaking those not using liquid design principles are
those that discover their pages do not fit well on various display
devices at different display resolutions.

Google: "liquid design"

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET (e-mail address removed)
URL http://www.metromilwaukee.com/clintongallagher/
 
Back
Top