Change padding or margin at bottom of single post page

Hi, For some reason on my single post pages a large padding or margin started appearing at the bottom of the page and I can’t figure out the CSS to fix it. I’ve tried this, but no luck. Can you take a look?

.single-post .hentry .entry-wrap{
    padding: 50px 0;
}

site: savethepostoffice.com
wordpress version 5.5
X theme version 7.2.3
cornerstone Version 4.2.3

Thanks.

Hello @Hudsonpilot

Thanks for writing to us

I checked the single blog page and found that you added three mega menu widgets. One of them for Tags. When you hover on Tags a dropdown opening with a tag list.
There is a CSS overflow: visible rendering from SG Optimizer Plugin cache file

Kindly clear cache and temporarily disable the cache plugin. If it is not solved after clearing cache please add this code in X--->Theme options-->CSS

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3>li.mega-menu-flyout ul.mega-sub-menu{
height:500px;
overflow-y: scroll;
}

The purpose of providing the custom CSS to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.

Hope it helps you.

Clearing the cache and temporarily disable the cache plugin didn’t work, but the CSS you provided worked perfectly. I would have never figured that one out. Thanks so much!

@Hudsonpilot,

You’re welcome and it’s our pleasure to help you. If you have any other concerns, feel free to reach us.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.