HTML/CSS help

Discussion in 'HTML & Website Design' started by sbfc93, Aug 19, 2009.

  1. #1
    convocorner.com/qposting/packages.html

    You see the packages row with prices and information... I want to replicate it so I have a second column of packages identical to the first row. Tried copy and pasting the same code to no effect, anyone have a correct code?

    Cheers in advance.
     
    sbfc93, Aug 19, 2009 IP
  2. DesignSamples

    DesignSamples Banned

    Messages:
    170
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #2
    in your CSS you have the overflow:hidden on your wrapper layer therefore when you copy paste the next row, it get's hidden.

    Just edit the proper layers overflow status and you should be fine...
     
    DesignSamples, Aug 19, 2009 IP
  3. sbfc93

    sbfc93 Peon

    Messages:
    133
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Tried removing the overflow:hidden and also tried changing to overflow:auto with no success.
     
    sbfc93, Aug 19, 2009 IP
  4. Whizkid

    Whizkid Well-Known Member

    Messages:
    324
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    135
    #4
    You need to set your wrapper class so it looks like this:

    
    .wrapper {
    margin: 0 auto;
    overflow: auto;
    width: 950px;
    }
    
    HTML:
     
    Whizkid, Aug 19, 2009 IP