Need Help with Site layout and screen sizes

Discussion in 'HTML & Website Design' started by maplater, May 2, 2007.

  1. #1
    Hi, so I built a site that looks good under my screen resolution though when I lower the screen resolution, which I believe is more the average screen size things on the page start getting scrunched up and pushed around. I built it in dreamweaver using only percentages to define where layers were horizontally I used pixel sizes for the vertical heights. I have heard something about me using absolute position in the CSS or something but I am not sure and am just looking for some help or guidance. The website is TextWick. Don't mind the green ad banner at the top, it's from godaddy since I haven't paid for the space yet.
    Thanks a lot.

    Michael
     
    maplater, May 2, 2007 IP
  2. maplater

    maplater Peon

    Messages:
    97
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I have heard something else about using tables to build the site.
     
    maplater, May 2, 2007 IP
  3. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #3
    use should use one css file to put the stuff in. for ex. textwick.css

    css part:

    .header {
    background: #FFF;
    font: normal 1.2em "Trebuchet MS";
    margin: 0 auto;
    height: 200px;
    (etc. etc whatever u want to specify in header section)
    and close it with }

    and the html part:

    <div class="header">
    TEXT TEXT TEXT TEXT
    </div>

    i´m not sure if i explain it quite good...but use one css file to put the stuff in.
     
    HDaddy, May 2, 2007 IP
  4. 8everything

    8everything Peon

    Messages:
    16,350
    Likes Received:
    903
    Best Answers:
    0
    Trophy Points:
    0
    #4
    If CSS isn't for you.. you can fix the problem with HTML tables by setting the width to %100 (that will fill the whole width of any screen resolution)
     
    8everything, May 2, 2007 IP