Archived topic
Customizing the single post page backround.
1 reply · Started by Martin on November 10, 2020
I have nice customized pages on my website in the blog area due to WP Show Posts. However the single post page still looks ugly and I wonder how I can also customize that one. I am using a full width background gradient anywhere else and would love to also have that there. Moreover I'd like to round the edges of the white blog "container" just a little bit.
Can this be done via a combination of GeneratePress, Elements and GenerateBlocks?
Hi,
I am using a full width background gradient anywhere else and would love to also have that there. Moreover I’d like to round the edges of the white blog “container” just a little bit.
You can try this CSS code to apply
body.single .inside-article {
background: linear-gradient(360deg, #ffffff 40%, rgba(159, 192, 59, 0.31) 110%);
border-radius: 10px;
}
Adjust the values according to your preference. :)