Archived topic
How to hide post author link from full-width pages?
3 replies · Started by Ravi Dixit on November 6, 2020
Hey GeneratePress Team!
I want help in followings:
1. I don't want to show author link when I select full-width from Layout>Container>Full-width. See here https://prnt.sc/vesd7m
2. How to make the container background white in comment area only for full-width pages? See here https://prnt.sc/vesc51
Please help me...
Thanks
Hi there,
try adding this CSS to remove the single post meta:
.single-post.full-width-content .entry-header {
display: none;
}
and this to change the Body background color to white:
.single-post.full-width-content {
background-color: #fff;
}
Thanks, David for the help :)
You're welcome