Gap at the top and missing parallax sections

First of all, I really like the theme and it was easy to work with. Everything went fine, but somehow as I put the page online, I saw 2 mistakes that hasn´t been there when building the site.

1: There is a big gap at the top of the page

2: Here should be a parallax section with a picture

These two errors haven´t been there when I edited the page. After I removed the maintenance mode and put the page online, the errors were suddenly there.

Would be cool to have a solution from you, guys :slight_smile:

PS: My website is still online, so you can see the errors live: www.lucas-kesselhut.de

OK:

I figured out the problem with the parallax section.

Now the only problem is the gap on the top.

Hi @kessel1993,

I hope you are well today and thank you for your questions.

Now the only problem is the gap on the top.

You can try removing it by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other


.shapely_home_parallax .fullscreen.image-bg {
    padding-top: 0;
}

Best Regards,
Movin

Peeeerfect! Now it is fixed.
Thank you so much!

You are most welcome here :slight_smile:

One last question: Is there a possibility to make the contact field at the end of the page a bit smaller?

You can make the contact field at the end of the page a bit smaller by using the below CSS code.

textarea.wpcf7-form-control.wpcf7-textarea {
    width: 90%;
    height: 200px;
}
input.wpcf7-form-control.wpcf7-text {
    height: 30px;
    width: 90%;
}