[Resolved] Remove right border on mobile and tablet

Home Forums Support [Resolved] Remove right border on mobile and tablet

Home Forums Support Remove right border on mobile and tablet

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2368175
    Fergal

    Hey there,

    I’ve applied a right border to the main content to differentiate between the main and sidebar:

    
    .content-area {
        border-right: 1px solid rgb(227, 227, 228);
    }
    

    Can you please advise on how I can hide this on the mobile and tablet views?

    Thanks

    #2368326
    Fernando
    Customer Support

    Hi Fergal,

    Try replacing your code with this:

    @media (min-width: 1025px) {
        .content-area {
            border-right: 1px solid rgb(227, 227, 228);
        }
    }
    #2369016
    Fergal

    That is perfect thanks Fernando!

    #2369314
    Fernando
    Customer Support

    You’re welcome Fergal!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.