CSS Problem: Second column going into header | Help

Discussion in 'CSS' started by sar420, Jun 16, 2011.

  1. #1
    Please see this contact form page:

    http://audiquattrofinal.tigersportsmarketing.com/

    The second column fields are going into the header. I want the second column to start level with the first column, and below the Venue/Date heading. Also, the second column has got bullets for some reason...even though the HTML I've used for it is exactly the same I used for the first column.

    I've become a bit rusty with CSS..please help if you can!
     
    sar420, Jun 16, 2011 IP
  2. lonewolff

    lonewolff Member

    Messages:
    338
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    30
    #2
    Have you cleared your floats?
     
    lonewolff, Jun 16, 2011 IP
  3. webxhtml

    webxhtml Peon

    Messages:
    25
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    u forgot to write float:left 2 ur right colum + u need 2 clear:both after left and right column to clear ur floats
     
    webxhtml, Jun 16, 2011 IP
  4. sar420

    sar420 Notable Member

    Messages:
    3,147
    Likes Received:
    212
    Best Answers:
    0
    Trophy Points:
    230
    #4
    I've added both but its made only a minor difference. I need the second column to start where the left column starts :( Also, its still showing bullets in the right column for some reason!
     
    sar420, Jun 16, 2011 IP
  5. webxhtml

    webxhtml Peon

    Messages:
    25
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    ok u got 2 colums left and right;
    #left {
    width:50%;
    floaT:left;
    clear:both--- > delete it
    }
    #right {
    width:50%;
    floaT:left;
    margin-right:50%; --> delete it
    }

    -->Also, its still showing bullets in the right column for some reason!
    u got there tag li but dont have opening ul
    like-->
    <ul>
    <li>asdj ahsd jaskh dk</li>
    </ul>
    and u need to reset ul by adding this style
    ul {
    list-style-type:none;
    }
    if after all of this right colum still on top u can add margin-top
     
    webxhtml, Jun 16, 2011 IP
  6. sar420

    sar420 Notable Member

    Messages:
    3,147
    Likes Received:
    212
    Best Answers:
    0
    Trophy Points:
    230
    #6
    Hey thanks so much for your detailed analysis it worked!!

    Do you have an idea about embedding custom fonts with CSS? I converted my font files to EOT and gave the call in CSS but it isn't working...
     
    sar420, Jun 18, 2011 IP