Too much whitespace at the top of the webpage

96 Views Asked by At

There is too much whitespace at the top of the page: http://www.foundthenchosen.uk/

I've tried playing around with padding but I can't seem to make any difference.

CSS code: http://pastebin.com/h2mGYXES

HTML code: http://pastebin.com/XAc7U3dM

4

There are 4 best solutions below

0
On

It is

section {
  padding: 100px 0;
}

Change 100px for what you want.

1
On

Simple..

<section id="callToAction">

has padding of 100px so just remove that...

0
On

you have that padding given to your section id="callToAction" freelancer.css line no: 166

section {
padding:100px 0;
}

change that or write this in your css file at bottom :

#callToAction {
  padding:0;
}
0
On

The following CSS will fix your issue:

section#callToAction {
   padding: 0 !important;
}