SP Pagebuilder Fluid Module - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

SP Pagebuilder Fluid Module

Alison

Alison

SP Page Builder 3 years ago

HI

Can I make a SPPB module fluid so it fills the whole width of the page?

Thanks Alison

-1
7 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #49162

Hi,

Please use the following code in your custom CSS to make it full width:

#sp-bottom .container {
    max-width: 100%;
    padding: 0 !important;
}

Note: Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

Best Regards

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #49140

Hi there!

Thanks for contacting us.

If you do not enabled the box layout, then with the help of modifying margin, padding vallue it can be achieved I think. Which module you are talking about, please? Can you redirect me to where you have that module to check?

Best Regards

0
Alison
Alison
Accepted Answer
3 years ago #49151

Module 440 shows in module position [top-footer] on all pages

0
Alison
Alison
Accepted Answer
3 years ago #49170

Thank that works.

Is there a way to remove the white space above and below the module?

![https://ibb.co/Lt7rPnc]

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #49235

Hi there!

Glad to know that the code is working:)

There is module title shows in white color. Please have a look: https://prnt.sc/24jrwqq

So you can choose to remove the module title from module edit window.

And please remove margin, padding values from your module and section.

You can use the following custom code either:

#sp-bottom .sp-module, #sp-bottom {
        margin: 0;
        padding: 0;
}
#sp-bottom .sp-module .sp-module-title {
    display: none;
}

Best Regards

0
Alison
Alison
Accepted Answer
3 years ago #49359

OK, thanks, I put in a margin top and bottom of -70 and that worked (I think)

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #49983

Glad that it worked for you and you are always welcome:)

0