My site looks really off

Discussion in 'HTML & Website Design' started by EGS, May 3, 2007.

  1. #1
    Hey. Am wondering why my site's logo is not aligning to the top right as it should be? I don't understand why its placement is where it currently is. Check it out here:
    http://www.grandayum.com

    :confused:
     
    EGS, May 3, 2007 IP
    8everything likes this.
  2. 8everything

    8everything Peon

    Messages:
    16,350
    Likes Received:
    903
    Best Answers:
    0
    Trophy Points:
    0
    #2
    The logo is the one with the red car graphic right? I see it on the right of your text content.. It would be on the absolute top right?
     
    8everything, May 3, 2007 IP
  3. missdanni

    missdanni Guest

    Best Answers:
    0
    #3
    I think the trouble is that your header tags.

    See you have this

    <h1>Pontiac Grand Am Resource Site</h1>
    <div class="grand-am"><img src="grand-am.gif" alt="Pontiac Grand Am" /></div>

    .grand-am {
    float: right;
    margin: 10px;
    text-align: top;
    }

    Maybe give this a try

    <div class="head">Pontiac Grand Am Resource Site</div>
    <div class="grand-am"><img src="grand-am.gif" alt="Pontiac Grand Am" /></div>

    .grand-am {
    float: right;
    margin: 10px;
    text-align: top;
    }
    .head {
    font-size:16px;
    }

    When you use a header tag it is also saying put a line break below the text.

    Hope that helps :)
     
    missdanni, May 3, 2007 IP