|
-
Apr 14th, 2011, 04:14 PM
#1
Thread Starter
New Member
Any one has the sample code for full screen.
Our company uses IE as a default browser.
But everyone has his own resolution.
My web application uses a master page to deal with all child pages.
But for some reason, it has a good look in my computer but
looks very ugly at others.
If anyone has some samply code to fix all resolution problem,
could you please post it.
Thank you very much in advance.
-
Apr 14th, 2011, 05:30 PM
#2
Re: Any one has the sample code for full screen.
Not having a sample but theoretically there are 2 approaches.
1st)Decide on a resolution and design everything in this resolution
2nd)Use percentage (% on your width's and height's so it will match every resolution.
Although the second one seems ideal i rarely see this happening on sites, so i suppose it takes a lot of effort.
P.S. There is also the mobile's version design that it's not relevant here but i thought i'd mention it.
If you have design problems you better explain what are with some sample code accompanying them and i'm sure someone will give you a solution.
ἄνδρα μοι ἔννεπε, μοῦσα, πολύτροπον, ὃς μάλα πολλὰ
πλάγχθη, ἐπεὶ Τροίης ἱερὸν πτολίεθρον ἔπερσεν·
-
Apr 14th, 2011, 08:56 PM
#3
Re: Any one has the sample code for full screen.
The first thing to decide is if the pages fit the full screen width (like this site) or are contained in a "wrapper" box of say 1000px wide and it's alligned left or centre. These days most standard screens are over 1000px wide and under 2000px wide. That's a big variation so if your page does not scale well horizontially I think it's best to fix a width between 800-1000px (whatever suits).
Are you using css or tables? If you post a link, html or screen shot of the site I could knock up a css page template.
The problem with computers is their nature is pure logic. Just once I'd like my computer to do something deluded. 
-
Apr 15th, 2011, 09:27 AM
#4
Thread Starter
New Member
Re: Any one has the sample code for full screen.
Thanks a lot guys.
I have a css file associted with the application.
I tried the percentage but it doesn't work perfectly.
-
Apr 15th, 2011, 10:10 AM
#5
Fanatic Member
Re: Any one has the sample code for full screen.
 Originally Posted by ilplvm
Thanks a lot guys.
I have a css file associted with the application.
I tried the percentage but it doesn't work perfectly.
I generally design within a fixed width of between 900px and 1000px so anyone using a 1024 x 768 screen, or higher, will see something reasonably presentable.
But, I've just realised that mobile devices have a much higher screen resolution than computer monitors. So, if you include something like:
body
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #333;
background-color: #FFFFFF;
text-align: center;
}
in your css style sheet - if you look at a site with the font set to 12px on a mobile device - it displays as 6px or even less - unreadable in fact.
So, I'm a convert to setting everything up by percentages now.
-
Apr 15th, 2011, 03:51 PM
#6
Thread Starter
New Member
Re: Any one has the sample code for full screen.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|