CSS for BB dont work for shortcodes and single posts using Genesis theme

Hi!

Im trying to load a Beaver Builder layout, a row with text and a contact form. Im using BB with Genesis and Dynamik Website builder.

I have inserted a shortcode to show before the footer but the css breaks, it will not use the BB css.

Shortcode [fl_builder_insert_layout slug=“kontakt-rad”]

Here is the url to the site, to a single post. http://bit.ly/1R388Ki

When you visit the frontpage or another page this row if fine, but when using a shortcode the css is not right.

Hey Hans,

I’ve checked the markup and the BB styling for that layout is loaded. This can also be verified with how the columns are staying side by side, not on top of each other - this is done by CSS. The problem here is that the theme you’re using has a different styling for pages and posts, that’s why it looks different on the latter. Here’s a sample styling which can be found specific to pages…

.dynamik-page-builder .site-inner p, .entry-content p {
  margin: 0 0 25px;
}

It’s only targeting the body class dynamik-page-builder which I believe only appears when you use the Page Builder page template. The same styling is not applied to posts, and this is the reason why the texts are so close to each other.

Ben