Display problems. Help Please

Discussion in 'CSS' started by studio, Sep 8, 2006.

  1. #1
    why doesnt work display:inline with h3? Does anyone know other ways to make a inline paragraph with more h3 elements?

    [​IMG]


    the code i`ve used:

    <h2 class="a"><a href="#">COMPUTING</a><br></h2>
    <div style="display=inline">
    <h3 class="a"><a href="#">General</a></h3>,
    <h3 class="a"><a href="#">File Extensions</a></h3>,
    <h3 class="a"><a href="#">Networking</a></h3>,
    </div>
     
    studio, Sep 8, 2006 IP
  2. wmburg

    wmburg Active Member

    Messages:
    300
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    58
    #2
    Your div is inline not your h3.

    To make your h3s inline:

    <style>
    h3.a
    {
    display:inline;
    }
    </style>
     
    wmburg, Sep 8, 2006 IP
  3. studio

    studio Peon

    Messages:
    54
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thanks, WMBurg
     
    studio, Sep 8, 2006 IP
  4. wmburg

    wmburg Active Member

    Messages:
    300
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    58
    #4
    no problem man
     
    wmburg, Sep 8, 2006 IP