Archived topic
Category header above sidebar
4 replies · Started by Rene Nekuda on January 20, 2022
Hello and sorry for a silly question…
I am using description for my categories. It is working well, but it shows title and desribtion only above blog posts, not above posts and a sidebar.
Is it possible to have this part full width and put a sidebar on the same level like post archive?
Preview: https://renenekuda.d.pr/b4HEWD
Thanks for a tip how to do it!
OK, I found a solution in Page Hero Element:
<h1>{{post_title}}</h1>
<em>{{custom_field.description}}</em>
Now I have a gap at the bottom of this: https://renenekuda.d.pr/lCSSje
I set up a background color to white…
Please, can you help me with this?
Hi there,
two options:
a) Edit the Header Element and add 1px of bottom padding to the page hero.
To explain - the italic text contains a <p> tag - which has 2em of bottom margin. Adding bottom padding to the hero will keep the margins inside the hero - so the space will have the hero background color.
OR
b) Add this CSS to remove that bottom margin:
.page-hero em p {
margin-bottom: 0;
}
Thank you, David. You are amazing! :)
Glad to be of help