Set a border around a wrap

Hi there, I'd like to add a 1px black border around a 'wrap'. Could you please tell me how to do this. The page is not live. So I can't give a URL. Here's a screenshot though


Comments

  • Found my own solution. Here's the code:

    .one-third.mcb-wrap.peer {

    border-left: 1px solid #000;

    border-right: 1px solid #000;

    border-top: none;

    border-bottom: none;

    }


    @media only screen and (max-width: 600px){

    .one-third.mcb-wrap.peer {

    border-top: 1px solid #000;

    border-bottom: 1px solid #000;

    border-left: none;

    border-right: none;

    }

    }

  • .peer is a custom class I added to the wrap.

  • Hello,

    I am glad that you found a solution for it.

    If I can help you with anything else, please, let me know.


    Thanks

Sign In or Register to comment.