Transparency Between Sections

Using X Pro, how do I make the space between each major section, transparent?

Hi there,

Please add this code in the customizer:

.home.page .hentry .entry-wrap:last-child {
    padding-top: 0;
}

Hope this helps.

I added …

.home.page .hentry .entry-wrap:last-child {
padding-top: 0;
}

Nope… still white.

Hi again,

Make sure you add the following code in the Theme Options > Global CSS or in the Customizer via Appearance > Customize > Custom > Edit GLOBAL CSS

.page .hentry .entry-wrap:last-child {
    padding: 0 !important;
}

Let us know how this goes!

Nope… still have the white background between sections.

Hi,

We are not sure what background you are referring to.

Can you provide us a screenshot showing the background between sections.

Thanks

Hi there,

That white background is the standard background of the pages.

If you want to remove it, you may add this code as well:

.site, .x-site {
    background-color: transparent;
    border: 0 !important;
}

But please note that removing that background color of the page container might affect the display of the site.

Hope this helps.

That works… thank you! :slight_smile:

You’re welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.