Results 1 to 10 of 10

Thread: Fluid web design

  1. #1
    Senior Member
    Join Date
    Aug 2004
    Location
    London
    Posts
    341
    Thanks
    3
    Thanked
    1 time in 1 post

    Fluid web design

    Hi i was wondering if anyone knew how to create a fluid web design.

    An example would be if i updated my site then it would adjust itself automatically without anything breaking such as large gaps on the website.

    Is it also possible, to create a website to stretch to the viewer’s resolution without breaking anything?

    I mainly use Photoshop and slice it up and place it into dreamweaver but i want to design a "fluid" website.

    And am wondering how i would do that. I don’t mind learning CSS and such to do all this but I just am lost right now and just need abit of help

    Thanks

  2. #2
    HEXUS.net Webmaster
    Join Date
    Jul 2003
    Location
    UK
    Posts
    3,108
    Thanks
    1
    Thanked
    0 times in 0 posts

  3. #3
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS
    the key to modern web design is separating content and design. this means only using really really simple HTML that serves to describe your document - like <p> for paragraphs and <a> for links, wrap up common sections with <div> or <span> tags (their uses vary slightly), then describing the actual style of the page using CSS. <table> should never be used for layout, and use of the <font> tag should be punishable by hanging.

    visit http://www.csszengarden.com/ - if you click the links on the right-hand side of the page, it changes the CSS file being used, and only the CSS file - the rest of the page (i.e. the HTML) remains the same. it's a perfect illustration of separated content/design - if you "view source" on the page, you should spot simple HTML - <p>, <a>, <span>, <div>, and not a lot more.

    oh, and check everything you do with all the major rendering engines - gecko, trident, presto and khtml

  4. #4
    Ah, Mrs. Peel! mike_w's Avatar
    Join Date
    Oct 2003
    Location
    Hertfordshire, England
    Posts
    3,326
    Thanks
    3
    Thanked
    9 times in 7 posts
    Directhex has pretty much hit the nail on the head. Learning (X)HTML is not really that hard owing to the fact that there's very few tags to learn, and there's nothing complex about it. CSS, on the other hand, leads to all sorts of fun, frequently due to battling with Internet Explorer.

    WYSIWYG editors aren't always particularly useful since they can add a lot of extra code that is completely unneccesary, as well as not always being compliant with the W3G standards.

    Incidentally, having looked at the link from Iain, I would make one suggestion - use relative units where possible i.e. use em instead of px or pt.
    "Well, there was your Uncle Tiberius who died wrapped in cabbage leaves but we assumed that was a freak accident."

  5. #5
    Does he need a reason? Funkstar's Avatar
    Join Date
    Aug 2005
    Location
    Aberdeen
    Posts
    19,874
    Thanks
    630
    Thanked
    965 times in 816 posts
    • Funkstar's system
      • Motherboard:
      • Gigabyte EG45M-DS2H
      • CPU:
      • Intel Core2Quad Q9550 (2.83GHz)
      • Memory:
      • 8GB OCZ PC2-6400C5 800MHz Quad Channel
      • Storage:
      • 650GB Western Digital Caviar Blue
      • Graphics card(s):
      • 512MB ATI Radeon HD4550
      • PSU:
      • Antec 350W 80+ Efficient PSU
      • Case:
      • Antec NSK1480 Slim Mini Desktop Case
      • Operating System:
      • Vista Ultimate 64bit
      • Monitor(s):
      • Dell 2407 + 2408 monitors
      • Internet:
      • Zen 8mb
    Those are a couple of really good links. I've been out of the web design thing for almost 5 years now, and things have changed quite a lot in that time (not exactly surprising is it).

    A couple of those CSS Zen Garden styles have given me some ideas on how to style my own website/blog etc.

  6. #6
    Senior Member
    Join Date
    Aug 2004
    Location
    London
    Posts
    341
    Thanks
    3
    Thanked
    1 time in 1 post
    Thanks for the advice guys!

    There is so amazing work over at http://www.csszengarden.com, the features of CSS sound great but there is just so much resource for it out there, i don’t know where to begin learning.

    Is there a good basic CSS tutorial anyone of you would recommend?

    Thanks for the help!

  7. #7
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS
    Quote Originally Posted by ikkitousen
    Thanks for the advice guys!

    There is so amazing work over at http://www.csszengarden.com, the features of CSS sound great but there is just so much resource for it out there, i don’t know where to begin learning.

    Is there a good basic CSS tutorial anyone of you would recommend?

    Thanks for the help!
    learn the difference between block-level and inline

    learn the assorted margin: and padding: settings

    that's the important bits for design. the rest's all clever application and font twiddling

  8. #8
    Does he need a reason? Funkstar's Avatar
    Join Date
    Aug 2005
    Location
    Aberdeen
    Posts
    19,874
    Thanks
    630
    Thanked
    965 times in 816 posts
    • Funkstar's system
      • Motherboard:
      • Gigabyte EG45M-DS2H
      • CPU:
      • Intel Core2Quad Q9550 (2.83GHz)
      • Memory:
      • 8GB OCZ PC2-6400C5 800MHz Quad Channel
      • Storage:
      • 650GB Western Digital Caviar Blue
      • Graphics card(s):
      • 512MB ATI Radeon HD4550
      • PSU:
      • Antec 350W 80+ Efficient PSU
      • Case:
      • Antec NSK1480 Slim Mini Desktop Case
      • Operating System:
      • Vista Ultimate 64bit
      • Monitor(s):
      • Dell 2407 + 2408 monitors
      • Internet:
      • Zen 8mb
    Quote Originally Posted by directhex
    twiddling
    good word

  9. #9
    Large Member
    Join Date
    Apr 2004
    Posts
    3,720
    Thanks
    47
    Thanked
    99 times in 64 posts
    Zen Garden pages may look nice, but very few of them are fluid layouts. Also you may want to consider the effects of using the CSS presentation/content paradigm on those who posses older machines/software.
    To err is human. To really foul things up ... you need a computer.

  10. #10
    Senior Member
    Join Date
    Aug 2004
    Location
    London
    Posts
    341
    Thanks
    3
    Thanked
    1 time in 1 post
    Thanks directhex you've been a great help and yamangman thanks for the tip!

    Better get learning

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Web Design & Database Management Course ?
    By ham_p_ster in forum General Discussion
    Replies: 5
    Last Post: 18-08-2005, 10:10 PM
  2. Legalities of Freelance web design
    By RoGuE|SaBeR in forum Software
    Replies: 1
    Last Post: 08-07-2005, 12:15 PM
  3. Web Site Design
    By Bunjiweb in forum Networking and Broadband
    Replies: 1
    Last Post: 29-12-2003, 02:07 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •