What to do to delete top white-space at most code taken from the book "css3 4e, SiteP

what to do to delete top white-space at http://www.paphoscarhire.mobi/DroushiaHotelApts/main2.html most code taken from the book “css3 4e, SitePoint” => 3 col layout wide header/footer but NOT responsive.

well? i inspect element in chrome but seems css has no property to disable…

Hi, lse123, welcome to the fourms.

The body has padding-top of 70px applied. Reduce that value or delete that property to change the amount of white space at the top of the page:


body {
    color: #232525;
    font: 15px/1.5 "Helvetica Neue",Helvetica,Arial,sans-serif;
    [color=red]padding-top: 70px;[/color]
}

solved