Site logo

Archived topic

Remove right border on mobile and tablet

3 replies · Started by Fergal on October 9, 2022

Viewing posts 1–4 of 4

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

Hi Fergal,

Try replacing your code with this:

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

That is perfect thanks Fernando!

You're welcome Fergal!

This archived topic is closed to new replies.