php forum
php mysql forum
php mysql smarty
 
Topic Options
#226830 - 10/27/02 11:52 AM Larger Screen Monitors... not always good.
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
While working on things I decided to try and see what my page would look like at the common 800x600 resolution. If you have a screen larger than 15 inches, which for the last 6 years I hadn't, you will notice that some sites don't fully expand in your browser. MSN's site www.msn.com is one such example. If you look you will see that they have their table width set to 768 pixels wide. This looks good in 800x600 or higher as the size remains constant. So, wondering what my page, created at 1152x864, would look like at 768 pixels wide. To say the very least, it was not good.<br /><br />Personally, I like it when a site uses the full width of my screen. Such layouts are called "fluid" and fill the available space in the browser. But, as much as I like sites that are able to use this space I do not like sites that were created on a larger screen and are not fluid. It's on these sites that users with smaller screens and resolutions end up scrolling right to see the entire page. When I used to encounter such a site I would just move on as it was annoying. I'll bet I am not the only one that moves on either.<br /><br />So, now I'm encompassing the body of my pages in a single celled table that is center aligned. I use this to switch the width of the layout from 770 pixels to 100% so I can compare how it will look for myself and for others. <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />Just thought I would share this insight just in case someone else has been overlooking this aspect too. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
~Dave
ChattersOnline.com

Top
#226831 - 10/27/02 12:03 PM Re: Larger Screen Monitors... not always good. [Re: sjsaunders]
msula Offline
Addict

Registered: 02/18/02
Posts: 1969
Loc: Lansing, Michigan
Hey dave, I know what you mean. I have a nice 19" running a high res. and I do all my designs and work on that and forget what happens until I go to work and see it on our small monitors there.<br /><br />I ran into a similar problem on this current site I'm working on, you can see it here:<br /><br />www.broneah.com<br /><br />I designed it on my machine, so to me it looked normal. Well, when you start stacking images horizontally if it gets too wide you eventually have the problem you mentioned, which I did not notice at the time. But I think I have the site updated now so it will work at any resolution. You can try it by draging the corner of your browser window and seeing it at various sizes and it looks good under almost all sizes <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />But yeah, its something I think a lot of people overlook <img src="/forum/images/graemlins/smile.gif" alt="" />

Top
#226832 - 10/27/02 12:45 PM Re: Larger Screen Monitors... not always good. [Re: palmen]
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
I know I can drag the screen to various widths but I wasn't always sure where the 800x600 mark was when doing it. Also, when using dreamweaver I can see what it looks like (for the most part) on the lower resolution as I'm working on it. This has been very helpfull for sure. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
~Dave
ChattersOnline.com

Top
#226833 - 10/27/02 01:53 PM Re: Larger Screen Monitors... not always good. [Re: sjsaunders]
sisterscape Offline
User

Registered: 07/13/02
Posts: 28
I'd like to put in my two cents. Although I'm pretty new to it, I've worked very hard to make my website pages fluid. Just about everything is in percentages with very few intentional line breaks. It looks good at different resolutions as well as different font sizes and scrunches up quite well. I understand that on Web TV there is no horizontal scrollbar so if you want your audience to see anything but the left side of your pages, the format needs to be fluid. Take a look . . . www.saynotogmos.org

Top
#226834 - 10/27/02 02:34 PM Re: Larger Screen Monitors... not always good. [Re: feign3]
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
That's looking really good. Great job. <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />WebTV has a resolution of 500 pixels wide (same as the tv, right?) so they do throw a wrench into the works. What I'm doing for them, since I seem to be getting alot of them lately, is creating a seperate template set for WebTV users and checking their user agent string and displaying accordingly.<br /><br />You can get the latest WebTV emulator here: http://developer.msntv.com<br /><br />Nothing like having "one more" browser laying around... lol <img src="/forum/images/graemlins/wink.gif" alt="" />
_________________________
~Dave
ChattersOnline.com

Top
#226835 - 10/28/02 10:17 PM Re: Larger Screen Monitors... not always good. [Re: sjsaunders]
Rick Offline
Guru

Registered: 05/11/99
Posts: 8373
Loc: Olympia, WA
When I was doing heavy web work I had my desktop background set as a big picture that had various resolutions outlined. That way I could just size my browser window to any certain resolution to see how it looked. Simple trick that works pretty good.
_________________________
UBB.threads Developer

Top
#226836 - 10/28/02 10:31 PM Re: Larger Screen Monitors... not always good. [Re: Sally]
JustDave Offline
That 70's Guy

Registered: 06/24/01
Posts: 4097
I like that idea. Going to use it. Thanks. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
~Dave
ChattersOnline.com

Top
#226837 - 10/29/02 05:45 AM Re: Larger Screen Monitors... not always good. [Re: Sally]
Gardener Offline
Addict

Registered: 05/11/99
Posts: 1966
Loc: Sweden, Stockholm
I had a little program that resized the browser window exactly (and we usually got a design picture with a screenshot of a window in the right size). I also think Homesite could open the browser with the right size when viewing.<br /><br />Nowadays I get window size information when resizing the window (and always have two 800 wide windows next to each other) instead.
_________________________
/Gardener | Complete list of my mods

Top
#226838 - 11/18/02 12:43 AM Re: Larger Screen Monitors... not always good. [Re: sjsaunders]
ChAoS_dup1 Offline
Code Monkey

Registered: 11/15/02
Posts: 576
Loc: Great Northwest
[] So, now I'm encompassing the body of my pages in a single celled table that is center aligned. I use this to switch the width of the layout from 770 pixels to 100% so I can compare how it will look for myself and for others. [/] <br /><br />Can you tell me how to do that or post a snippet of code for me? I'm learning how to edit HTML on the fly <img src="/forum/images/graemlins/smile.gif" alt="" /> <br />This is exactly what I am dealing with now on my start page. (See link)


Edited by ChAoS (11/18/02 12:45 AM)
_________________________
ChAoS
Emerald Forest Gaming Servers
Official STFU Thread


Top
#226839 - 11/18/02 01:00 AM Re: Larger Screen Monitors... not always good. [Re: barbiro]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Something like this:<br /><br /><pre><font class="small">code:</font><hr><br /><!--THIS PART GOES INTO THE GENERIC HEADER--><br /><div align="center"><br /><table width="770" border="0" cellspacing="0" cellpadding="0"><br /><tr><br /><td align="center" valign="top"><br /><br /><br />THREADS WILL END UP GOING IN HERE<br /><br /><br /><!--THIS PART GOES INTO THE GENERIC FOOTER--><br /></td><br /></tr><br /></table><br /><p></p><br /></div><br /></pre><hr><br /><br />Then where it says 770 (which is a fixed pixel width) you can change to 100%.<br /><br />So when you want to see what your site looks like on a very small monitor... change the width from 100% to to a fixed width like 640 etc....<br /><br />Normally I would leave it on 100% so the site will expand to the full width of everyone's monitor. <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />Hope that helps. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#226840 - 11/18/02 01:31 AM Re: Larger Screen Monitors... not always good. [Re: Daine]
ChAoS_dup1 Offline
Code Monkey

Registered: 11/15/02
Posts: 576
Loc: Great Northwest
Thanks Josh for following me from forum to forum <img src="/forum/images/graemlins/grin.gif" alt="" /><br /><br />Well I tried adding that and it didnt do much.I probably have a lot of extra tags in my Generic Header and Header Insert since Im flying by the seat of my pants in the html editing (compliance is out the window) so I'll mess with it tomorrow.<br />This should shrink or stretch Threads when resizing the browser window correct?<br /><br />Thanks again
_________________________
ChAoS
Emerald Forest Gaming Servers
Official STFU Thread


Top
#226841 - 11/18/02 01:37 AM Re: Larger Screen Monitors... not always good. [Re: barbiro]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Yes.<br /><br />I should have said to put the first part before your existing header...<br />and the last part after your existing footer.<br /><br />This basically "wraps" the whole thing inside a cell of a table.<br /><br />Looks like your site is working correctly... it expands and contracts depending on the size of the browser window.<br /><br />Threads doesn't go quite edge to edge... there's a percentage setting in the theme file for that. Yours looks to be about 90%.<br /><br />But if you want to see what your site looks like on a small monitor... change the 100% in the table to 700 pixels (for example)... that'll stop it from stretching and you'll see what layout elements get squished etc...<br /><br />You don't want users to scroll left and right.... so that'll show you problem areas in your layout... then you can make the adjustments, and put it back to 100%. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#226842 - 11/19/02 11:08 PM Re: Larger Screen Monitors... not always good. [Re: Daine]
ChAoS_dup1 Offline
Code Monkey

Registered: 11/15/02
Posts: 576
Loc: Great Northwest
Hmm..It doesn't seem to be working.My UBBThreads pages still wont browsersize.<br /><br />This is my Header-Insert<br /><pre><font class="small">code:</font><hr><br /><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><br /><br /><title>Emerald Forest Seattle </title><br /><meta name="description" content="Gaming Servers"><br /><meta name="keywords" content="Aliens vs Predators,[SuX],SuX Clan, Anti-Cheat,Counter-Strike,Counter Strike,Half Life,Half-LIfe,CS server,Game Servers,Natural Selection,Day of Defeat"><br /><meta http-equiv="pragma" content="no-cache"><br /><br /><!--THIS PART GOES INTO THE GENERIC HEADER--><div align="center"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td align="center" valign="top"><br /><br /><br /><body bgcolor="#626d5c"><br /><br /><center><p><br /><table border="0" cellspacing="0" cellpadding="0" width="95%"><tr><br /><td width="560" align="left" valign="middle"><br /><img src="/efslogo(1).jpg"><br /></td><br /></tr><tr><td align="center" colspan="2"><br /><p><br /><table border="0" cellspacing="1" cellpadding="2" width="95%" bgcolor="#000000"><br /><tr bgcolor="#424B3C"><br /><td align="center" width="20%"><b><a href="/faq.html" target="_new">Rules</a></b></td><br /><td align="center" width="20%"><b><a href="/html/index.php" target="_new">Statistics</a></b></td><br /><td align="center" width="20%"><b><a href="/index.html" target="_new">Live Status</a></b></td><br /><td align="center" width="20%"><b><a href="/staff.html" target="_new">Staff</a></b></td><br /><td align="center" width="20%"><b><a href="/Links.html" target="_new">Links</a></b></td><br /></td><br /></tr><br /></table><br /><br><br /></pre><hr><br /><br />This is my Generic Header<br /><pre><font class="small">code:</font><hr><tr><br /> <td align="center"><br /> <table border="0" cellspacing="1" cellpadding="2" width="95%" bgcolor="#000000"><br /> <tr><br /> <td width="20%" class="welcome"><br /> <form action="https://www.paypal.com/cgi-bin/webscr" method="post"><br /> <input type="hidden" name="cmd" value="_xclick"><br /> <input type="hidden" name="business" value="mmeatman@conceptsnet.com"><br /> <input type="image" src="https://www.paypal.com/images/x-click-but04.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"><br /> </form><br /> <b>Send Money!</b><br /> </td><br /> <td width="60%" td bgcolor="626d5c"><br /> <center><font color="white"><b>Welcome To The Emerald Forest-Play Nice!</B></font></center><br /> </td><br /> <td width="20%" align="right" class="welcome"><br /> <form action="https://www.paypal.com/cgi-bin/webscr" method="post"><br /> <input type="hidden" name="cmd" value="_xclick"><br /> <input type="hidden" name="business" value="mmeatman@conceptsnet.com"><br /> <input type="image" src="https://www.paypal.com/images/x-click-but04.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"><br /> </form><br /> <b>Hurry!</b><br /><br /> </tr><br /></td><br /> </table> <br /><br><br /></pre><hr><br /><br />and I stuck this in the Footer<br /><pre><font class="small">code:</font><hr><!--THIS PART GOES INTO THE GENERIC FOOTER--></td></tr></table><p></p></div></pre><hr><br /><br /><br /><br /> Gratefull for your help Josh
_________________________
ChAoS
Emerald Forest Gaming Servers
Official STFU Thread


Top
#226843 - 11/19/02 11:45 PM Re: Larger Screen Monitors... not always good. [Re: barbiro]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Now are you saying that when you resize your window... nothing changes width at all?<br /><br />It does for me.<br /><br />Or do you mean that it doesn't quite go edge to edge?<br /><br />If that's the case... then check your theme file for this:<br /><br />Table width - all screens. (Can be a percentage or integer):<br /><br /><br />I suspect yours is on about 90% or so.... try 95% or 100% and you should see a difference. <img src="/forum/images/graemlins/wink.gif" alt="" />'<br /><br />Make sure you've got the % sign for things to resize. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#226844 - 11/20/02 12:00 AM Re: Larger Screen Monitors... not always good. [Re: Daine]
ChAoS_dup1 Offline
Code Monkey

Registered: 11/15/02
Posts: 576
Loc: Great Northwest
What I am saying is that when I drag my browser window smaller the page stays the same size and doesnt resize to fit like this particular page on my site<br /><br /><br />http://emeraldforestseattle.com/index.html<br /><br />When making the browser window smaller I am forced to drag left or right when opening this page<br /><br /> http://emeraldforestseattle.com/index.php
_________________________
ChAoS
Emerald Forest Gaming Servers
Official STFU Thread


Top
#226845 - 11/20/02 12:04 AM Re: Larger Screen Monitors... not always good. [Re: barbiro]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
It's tough to tell without the theme file percentage being higher.... but the index.php page does resize for me. <br /><br />Now there is a limit to how small it can go.. there are graphics and things that don't resize.. and thus... they can only be squeezed so far. <br /><br />But drag it wider... and you'll see the table cells stretch out. <img src="/forum/images/graemlins/wink.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top



Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks