Doobox Jet Stack doesn't show any content or images

Ok i’ve saved a project with 2 pages with Jet stack and i’ve send you by email

Check it

and hope you fix that issue

thank you so much.

I have also this page called SERVIZI with no Video Stacks and Jet Stack doesn’t work fine, u cannot click on the links, so the issue is not Video Stack; Could you check it in my project please and you will see the same problem. I’ve sent my project with 2 pages by email.
Thank you

I found this in the themes CSS code.

It has this in the CSS file for some reason:

section, aside {
padding-bottom: 32767px;
margin-bottom: -32767px;
}

This may be imperative to the working of the theme in some way, but it is not normal, and is what is causing the issues with Jet. Removing it appears to have no obvious effects on the theme.

You can override this, which returns everything to normal working order, by adding this to the site wide code area for CSS in the project :

section, aside {
padding-bottom:inherit !important;
margin-bottom:inherit !important;
}

I have contacted the developer to enquire about this, and ask that he targets only the theme’s section and aside elements with the themes CSS if it is imperative to the theme in some less obvious way.

1 Like