Site logo

Archived topic

Removing white blocks on sidebar

4 replies · Started by russel on December 4, 2021

Viewing posts 1–5 of 5

How can I remove the white blocks on the sidebar?

I want to add a line separator in each article similar to this:

https://imgur.com/OMBTB3q

Hi there,

if you mean the widget background colors then Customizer > Colors > Sidebar - you can make the color transparent.

To add a line below each post listing you would add this CSS:

.generate-columns .inside-article {
    border-bottom: 1px solid #ccc;
}

The colors are working but the css code doesn't generate any borders though.

Sorry i think i misread the requirement the CSS i provided added a border below each of the posts in the main content.
To add the border below each post in the sidebar you would do this:

.sidebar .wp-block-latest-posts.wp-block-latest-posts__list li {
    border-bottom: 1px solid #ccc;
}
This archived topic is closed to new replies.