Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #174784

    Hi,

    I’ve created a pricing table in which there are a couple of empty cells in the button row. Because of this, the cell is not being read as a ‘last child’ and has no bottom border under the $20 drop-in class:-

    http://bikramgreenvalley.com/sandbox/pricing/

    How do I create a bottom border for this cell?

    Thanks

    Simon

    #174926

    Hey friendlier!

    Please add this on your custom.css or Quick CSS:

    .main_color .pricing-table>li:nth-child(odd) {
    border-top: none;
    border-bottom: 1px solid #e1e1e1;
    }
    
    .main_color .pricing-table>li:nth-child(even) {
    border-bottom: 1px solid #e1e1e1;
    border-top: none;
    }

    Best regards,
    Ismael

    #175281

    that’s terrific – thank you for the quick response, Ismael!

    best

    Simon

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Avia Pricing Table, empty cell in button row’ is closed to new replies.