Remove Div Border

  • Unknown's avatar

    Working in shoreditch and the div tables have borders on them that I would like to remove in the css.

    I’d also like know on the home page how the icons and the copy were arranged like that. Currently I’m using a table but I can’t seem to get the 25/75 split between the icon and the type.

    The blog I need help with is: (visible only to logged in users)

  • Hi there,

    If you just want to get rid of that border on table items, use this:

    table, td, th {
      border: none;
    }
    

    If you’ll add a custom class to the block, we’ll see if we can help you get the 25/75 split.

    That said, have you thought about using a column layout instead of the table layout? That might adapt better on mobile.

  • The topic ‘Remove Div Border’ is closed to new replies.