Site logo

Archived topic

Incompability with Beaver Themer

1 reply · Started by Olle on March 1, 2022

Viewing posts 1–2 of 2

Hi
I have discovered that there is an incompability with Beaverbuiders Beaver themer. It affects the "singular" themer layout.
This is a new behaviour that I have not seen before.

Example page is
https://olle.dyndns-ip.com/luftskeppet/2022/02/19/hej-varlden/

The page should be full width but it is not.
What is preventing the page from being full width is the style for the site content.

.site-content {
display: flex;
}

If I change it it to
.site-content {
display: flex;
flex-direction: column;
}
or
.site-content {
display: block;
}

The page layout works as expected.

Can you tell me how this could be fixed without the extra css? Because it will effect older sites if I update Generate Press theme.

Regards
Olle

Hi there,

for now - the only way to fix it is with CSS. I would use this:

.fl-builder-content {
    width: 100%;
}

As this means that GP on non BB pages still behaves as expected.

This archived topic is closed to new replies.