home-close class

QuestionsCategory: Hello Serendipitoushome-close class
Phil Marinucci asked 5 years ago

The home-close class is allowing too much white space after the ‘Get In Touch’ form on the homepage.  Where is this class located, can it be edited?

Attachments
2 Answers
Jennifer Staff answered 5 years ago

What is the URL to preview? The Home Close is in the style front sheet, and on line 400 is padding that can be adjusted. Without looking at it though, that may not be the issue you are having. The image was too small to get an idea of what was happening.

Phil Marinucci replied 5 years ago

Here’s the site I’m working on… http://lisaaquilina.ca

You’ll see there’s a large white space after the WPForm and before the Blog section. I’m thinking the white space may be part of the form. Not sure why.

Jennifer Staff answered 5 years ago

It’s mostly the padding for the home close and space added above the content. You can separate the Home Close from the code it is attached to on line 400, then change the bottom padding to 0. So this

.home-flexible, .home-close {
margin: 0 auto;
padding: 100px 40px;
}

would become this

.home-flexible {
margin: 0 auto;
padding: 100px 40px;
}

.home-close {
margin: 0 auto;
padding: 100px 40px 0;
}

Phil Marinucci replied 5 years ago

Perfect thanx!