Hi,
I’ve added a border to some columns using the following CSS:
.column-with-border:after{
content: “”;
background-color: #D3D3D3;
position: absolute;
top: 0;
right: -6.8%;
width: 1px;
height: 100%;
}
.column-with-border:last-child:after{
display: none;
}
I’m happy with how it looks on desktop, but on mobile it means the borders show up on the right of the screen, looking a bit weird.
Please could you tell me how I can hide those borders on mobile only? Or when the site gets below a certain width?
For reference, the site is : https://soundtrack.academy/
Thank you