Hi Paul,
Thank you for looking into this for me. I'm usually good at figuring CSS out but I'm getting defeated by this one.
The override you provide works with hiding the article details and social icons. The full width for things like the hero section does not work.
Note: I won't be actually typing any article content into Joomla for these pages, I'm need to use articles for pages for the custom fields feature.
This is what I have currently:
.fullwidth #sp-main-body {
padding: 0 0 !important;
}
.fullwidth .article-details .article-ratings-social-share {
display: none !important;
}
.fullwidth #sp-page-builder > .page-content > .sppb-section > .sppb-row-container {
max-width: 100%;
}
If I add the following CSS, I get the full width, but the header, menu and footer go full-width aswell breaking template layout consistency. I wasn't able to figure out CSS to fix it.
.fullwidth .container,
.fullwidth .container-inner {
max-width: none;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}
Even with this there's still a small 5px gap between the menu and hero section.
Below are two same content pages, one made with SPB and the other using an Article. The article needs to match the SPB page.