Help Center

Powered by Minitek FAQ Book
Loading...

Don't fit on the screen

AR
Andre RosingPosted 7 years agoEdited 7 years ago
 Hello,

See the website. The bottom items run over the footer

Andre
Loading...
0
#2171

1 answer

M
MinitekPosted 7 years agoModerator
Hi Andre,

This issue is caused by your template.
For some reason, your template is giving fixed heights to the main body area.

For example:
<div id="midCol" class="zg-col zg-col-9 zen-push zen-push-3" style="height: 1258px;">


You can fix the problem by removing the fixed heights, for example, by adding this css in your template:

#midCol {
  height: auto !important;
}