Skip Navigation

[Resolved] Template content overlapping with footer

This support ticket is created 4 years, 1 month ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 - - 9:00 – 13:00
14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 - - 14:00 – 18:00

Supporter timezone: Africa/Casablanca (GMT+01:00)

This topic contains 2 replies, has 2 voices.

Last updated by alexB-25 4 years, 1 month ago.

Assisted by: Jamal.

Author
Posts
#2031311

Hi there!

We just built a template for a post type. (No problems.)

But the content is overlapping with the footer, e.g.: hidden link

I checked your documentation and demos and actually found my theme among the demos, so that's good. We're using the7: hidden link

And we can force fix the problem, e.g. by adding this CSS:

#main > .wf-wrap, #bottom-bar > .wf-wrap, #footer > .wf-wrap {
height: 500px;
}

But this isn't dynamic and doesn't change with the amount of content on the page.

Could you help us with a fix?

Thank you!

Alex.

#2031561

Hello Alex and thank you for contacting the Toolset support.

It seems that the theme has a style on a class "skill" that set's the whole article to 7px height. You can override this style inside of the CSS section of the content template with the following CSS:

article.skill {
    height: unset;
}

Check this screenshot hidden link

#2031689

That did it. Thank you!