Hi @delerium62,
What theme are you using? There seems to be a CSS coming from Blocksy causing this. It would be best to reach out to their support regarding this.
Otherwise, here is a CSS you may add in Appearance > Customize > Additional CSS to override this:
#main-container .entry-content .gb-container.gb-container-9ec709bc {
max-width: 600px;
}
Hope this clarifies. 🙂
Thread Starter
Wil
(@delerium62)
Hi @fernandoazarcon2,
I am using Blocksy, but it happens on the default theme as well (Twenty Twenty Two: https://www.screencast.com/t/goFFc6He5).
After speaking with Blocksy support, they pointed out that it is a known bug (https://github.com/tomusborne/generateblocks/issues/157), with no fix yet.
While your CSS works for containing the width, the Headline container is now sticking to the bottom of that container and ignoring the margin-bottom I have for it (100px).
I’m quite sure another piece “Additional CSS” can fix that, but this really defeats the purposes of having the GenerateBlocks plugin. If I have settings available to change within the plugin, they should really just work.
-
This reply was modified 4 years, 1 month ago by
Wil.
Thread Starter
Wil
(@delerium62)
So, with the CSS from @fernandoazarcon2 the container is now the right width, but the headline in the container is ignoring the bottom-margin I have set. This is how it appears in the WP editor: https://www.screencast.com/t/akWFuenh0, and it is correct.
On the actual live page view it appears like this: https://www.screencast.com/t/klSP7ku2b. It is ignoring any value I set for bottom-margin in GenerateBlocks.
Is this a GB issue, or the theme (Blocksy)?
Thanks.
-
This reply was modified 4 years, 1 month ago by
Wil.
Plugin Support
ying
(@yingscarlett)
There’s a conflict between your theme CSS and GB CSS:
https://www.screencast.com/t/Hhi1YY6YvJI
You can remove the margin bottom from the headline, instead add padding bottom to the container.
Thread Starter
Wil
(@delerium62)
@yingscarlett Thank you! That is perfect now.