Hi @asrme,
For reference, can you share the link to the site in question?
Thread Starter
asrme
(@asrme)
It’s a WordPress default spacing.
Try adding this through Appearance > Customize > Additional CSS to remove that space:
.entry-content ul.wp-block-latest-posts__list {
margin-left: 0;
}
Thread Starter
asrme
(@asrme)
Thanks, it worked.
I want to add shadow to the post title like this: https://ibb.co/Msx7FJd. Kindly tell how to do it.
Try adding this as well:
.entry-content ul.wp-block-latest-posts__list > li {
box-shadow: 0 0 12px #000;
padding: 10px;
border-radius: 12px;
}
.entry-content ul.wp-block-latest-posts__list > li:not(:last-of-type){
margin-bottom: 20px;
}
Thread Starter
asrme
(@asrme)
How to remove this space: https://ibb.co/q1bBsLg
Hi there,
you can remove the bottom margin of the last element inside the post using this CSS:
.entry-content ul.wp-block-latest-posts__list>li>:last-child {
margin-bottom: 0;
}
Thread Starter
asrme
(@asrme)
How to increase no. of posts in latest posts block. Right now, it allows only maximum 100 posts. How to increase it more than 100? https://ibb.co/ZgLVH5M
Its a core WordPress block, and i believe WordPress put a max limit on the number of posts per page, as showing lots of posts will make the query run very slow.
instead add a pagination block inside your query loop::
Pagination Block