Archived topic
How to set fixed header height
3 replies · Started by ALEKSEI on January 15, 2019
Hello
How to set fixed header height? To the pictures were at the same height.
attached in private url
Hi there,
can you provide a link to your Site ( You can replace the current link by editing your original topic ) just want to make sure i can provide you the right CSS to resolve.
Hi
Done!
So try this CSS:
.grid-container .entry-title {
line-height: 2.5ex;
height: 5ex;
overflow: hidden;
}
It will force the entry titles height to be 2 lines deep even if there is only a single line. More than 2 lines will be hidden.
If you wanted to change it to 3 lines then increase the height: 5ex; to height: 7.5ex ie. 3 x the line-height value.