Removing Title Space

Hello,

I am new to the wordpress world, and, of course, I have few problems! I want to remove a part of the layout that’s probably coded in the theme. When you refer to the website I’m building, you will see the menu, the slider, a blank area, and 4 images in a banner style.

The blank area used to be the place where you could see the header title. I achieved to remove the title in the editor, which was home in this case, but I don’t know where to go in the editor to also remove the blank area. I would like to see the 4 images directly under the slider.

Thank you in advance for you help,

Here’s the link to the website: gamerscheese.mystagingwebsite.com

Best,
Sam

Hello there,

I hope you are doing well.

Please try using the following CSS code to reduce the white space:


/*Reduce space below slider*/
#content {
    margin-top: 0px;
    margin-bottom: 40px;
}

.page-content, .entry-content, .entry-summary {
    margin: 1em 0 0;
}

Best Regards,
Support