Need help customizing CSS
-
This is my blog. Can I reduce each post column’s height? There is a big distance between post title and date posted and it looks like unnecessary white space. It is making my landing page look a little annoying.
I am hoping it is possible using CSS customization.
The blog I need help with is: (visible only to logged in users)
-
Hi @aravsanj, you’d be welcome to include something like this:
.archive-grid .hentry { height: 380px; min-height: 380px; }You can adjust the height as needed. Just be sure to test on different screen sizes, or enclose the changes within a size limit like so:
@media screen and (min-width: 768px) { .archive-grid .hentry { height: 380px; min-height: 380px; } }Please adjust the numbers so they work best for you.
-
- The topic ‘Need help customizing CSS’ is closed to new replies.