Site logo

Archived topic

How can I put a vertical line between blog post content and sidebar?

3 replies · Started by crosby87 on May 9, 2021

Viewing posts 1–4 of 4

Hi there,

I would like to have a vertical line across my individual blog post pages between the content and the sidebar.
See a screenshot: https://imgur.com/tjvHneJ

Could you please help with this?

Thanks in advance.

Hi there,

Is it only for single post pages?

If so, you can try adding this CSS:

@media(max-width:768px){
body.single-post .inside-article {
    border-right: 2px solid red;
}
}

Hi,

Thanks - yes, it is for individual posts only. I've added the code above, but it doesn't not do anything.

Hi there,

Try this CSS instead:

@media(min-width:769px){
    body.single-post .inside-article {
        border-right: 2px solid red;
    }
}

Let me know :)

This archived topic is closed to new replies.