I hate fluid designs. Am I a bad person?

Discussion in 'HTML & Website Design' started by mnymkr, May 17, 2006.

  1. #1
    What other sizes besides 770px do people design for? Fluid designs are great when I don't use banners but when I do, and I scroll over it all looks so yucky.
    Am I a bad person?
     
    mnymkr, May 17, 2006 IP
  2. fsmedia

    fsmedia Prominent Member

    Messages:
    5,163
    Likes Received:
    262
    Best Answers:
    0
    Trophy Points:
    390
    #2
    I wouldn't say so at all, I use static designs for quite a few of my sites -- in fact, I now realize I don't really use fluid at all really. Fluid is much harder to make it look good for, for all resolutions, so often I'll just use static so it looks the same for everyone.
     
    fsmedia, May 17, 2006 IP
  3. dcristo

    dcristo Illustrious Member

    Messages:
    19,776
    Likes Received:
    1,200
    Best Answers:
    7
    Trophy Points:
    470
    Articles:
    7
    #3
    I find placing banner ads on fluid designs much easier then on a fixed width, you have so much more space to work with!
     
    dcristo, May 17, 2006 IP
  4. mnymkr

    mnymkr Well-Known Member

    Messages:
    2,328
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    120
    #4
    well my problem is that say i have a large jpg as a brand logo on the left side of my site. Well if the whole site is fluid it looks great unit you minimize. Then everything starts jumbling above and below the image while the image stays in place. Maybe it is just me?

    So how do I make sure the site fills the screen but no more than the viewable area without making the width fluid?
     
    mnymkr, May 17, 2006 IP
  5. Jim bob 9 pants

    Jim bob 9 pants Peon

    Messages:
    890
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I like both, IF SOMEBODY BUYS A BIG MONITOR THEY WANT TO SEE A BIG WEB SITE else they would by a small monitor
     
    Jim bob 9 pants, May 17, 2006 IP
  6. dcristo

    dcristo Illustrious Member

    Messages:
    19,776
    Likes Received:
    1,200
    Best Answers:
    7
    Trophy Points:
    470
    Articles:
    7
    #6
    Who cares what it looks like when you minimize the browser?
     
    dcristo, May 17, 2006 IP
  7. mnymkr

    mnymkr Well-Known Member

    Messages:
    2,328
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    120
    #7
    I thought that was the point of fluid design so people could still see as much information as possible on the screen.
     
    mnymkr, May 17, 2006 IP
  8. dcristo

    dcristo Illustrious Member

    Messages:
    19,776
    Likes Received:
    1,200
    Best Answers:
    7
    Trophy Points:
    470
    Articles:
    7
    #8
    Wheny you said minimized, I was thinking you meant physically make the browser window smaller (not a smaller screen)
     
    dcristo, May 17, 2006 IP
  9. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #9
    Not exactly factual. Many people, including myself, like a large monitor so that more reasonably sized applications can co-exist on it. It's very handy to have my MUA (about 600px wide), a browser or two (at 800px wide) and Emacs (at about 550px width) open more or less side by side.

    I cannot imagine wasting all that screen size on a single app.

    cheers,

    gary
     
    kk5st, May 18, 2006 IP
  10. johneva

    johneva Well-Known Member

    Messages:
    1,480
    Likes Received:
    46
    Best Answers:
    1
    Trophy Points:
    170
    #10
    The best way to sole that problem is to make the banner in sections so it can resize too.

    Checkout the banner in the website lease-hire.co.uk in my sig it is made in 3 parts left center and right it is the center section that grows as needed.
     
    johneva, May 18, 2006 IP
  11. mnymkr

    mnymkr Well-Known Member

    Messages:
    2,328
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    120
    #11
    that is an interesting idea. ill have to look into it.
     
    mnymkr, May 18, 2006 IP
  12. Respiro

    Respiro Peon

    Messages:
    1,390
    Likes Received:
    42
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Could you explain it with more details? How you prepare an image for such a web site to appear clear in any monitor resolution? What if you have a Flash header?...
     
    Respiro, May 18, 2006 IP
  13. ludwig

    ludwig Notable Member

    Messages:
    2,253
    Likes Received:
    66
    Best Answers:
    0
    Trophy Points:
    225
    #13
    guys, I do it all the time, I like when the info fills the screen, that makes possible for the user to see the most you have one the site, of course it needs to be well thought out.

    You can determine the screen width with javascript and(or without) cookies like this
    <script LANGUAGE="JavaScript">
    	document.cookie = "SW=" + screen.width + "; expires= Thu,31-Dec-2200 00:00:00 GMT;";
    </script>
    
    Code (markup):
    also, if you can use programming like PHP or ASP, try to include pictures of different sizes like

    select case request.Cookies("SW")
        case <1000
             response.write "<img src='img1.jpg'>"
        case else
             response.write "<img src='img2.jpg'>"
    end select
    Code (markup):
    this is an xample of ASP script,

    you should do the same for FLASH also.

    I am not good at JavaScript, but you can switch between the images via JavaScript like this (if I am not mistaken of course)

    									<script>
    SW = screen.width
    if SW<1000
    {
    		document.write('<img src="img1.jpg">');
    }
    else
    {
    		document.write('<img src="img2.jpg">');
    }
    
    
    	</script>
    
    Code (markup):
    I think it works like this for JavaScript, please correct me if I am mistaken.
     
    ludwig, May 18, 2006 IP
  14. ludwig

    ludwig Notable Member

    Messages:
    2,253
    Likes Received:
    66
    Best Answers:
    0
    Trophy Points:
    225
    #14
    I even resize my forms depending on screen width on one of my sites, that helps a lot to have a page with better placement of content
     
    ludwig, May 18, 2006 IP
  15. Respiro

    Respiro Peon

    Messages:
    1,390
    Likes Received:
    42
    Best Answers:
    0
    Trophy Points:
    0
    #15
    ...but the Javascript is reliable enough? There are no cross-browser problems?
     
    Respiro, May 18, 2006 IP
  16. Respiro

    Respiro Peon

    Messages:
    1,390
    Likes Received:
    42
    Best Answers:
    0
    Trophy Points:
    0
    #16
    No you're definitely not! :) You're not the only one who don't like fluid designs...
     
    Respiro, May 18, 2006 IP
  17. johneva

    johneva Well-Known Member

    Messages:
    1,480
    Likes Received:
    46
    Best Answers:
    1
    Trophy Points:
    170
    #17
    Na javascript is not the best option here as it is said that 10% of people have javascript turned off and this being such an important part of the site it would be a bad idea.

    Though the ASP or PHP idea is a good way.
     
    johneva, May 18, 2006 IP
  18. ludwig

    ludwig Notable Member

    Messages:
    2,253
    Likes Received:
    66
    Best Answers:
    0
    Trophy Points:
    225
    #18
    Basically I check whether the screen width is more than a 1000 or no. Thus I excape the case of creating one image for 800x600, one for 1024x768, one for 1280x960 etc...
     
    ludwig, May 18, 2006 IP
  19. johneva

    johneva Well-Known Member

    Messages:
    1,480
    Likes Received:
    46
    Best Answers:
    1
    Trophy Points:
    170
    #19
    Why dont you like fluid designs though?

    I think you should do what you think is best and no you carnt be a bad person just cos you like to do things diffrently.

    Fluid designs work good for me but you are not me so do as you think is best. ;)
     
    johneva, May 18, 2006 IP
  20. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #20
    So you're going to send me a wide page because my monitors are 1024, 1280 and 1600 px wide? But my browser windows are only 800px wide, simply because it's easier to read text that isn't more than about 65 characters wide per line. Compare posts on this forum for readability in windows of 800 width and some gargantuan maximized width.

    That's not very nice.

    cheers,

    gary
     
    kk5st, May 18, 2006 IP