Row Columns In Mobile View - Question | JoomShaper

Row Columns In Mobile View

EG

Eduardo G.

SP Page Builder 11 months ago

Hi! I have an sppb page with 1 row and 4 colums with images In my PC I see 4 columns, in my phone I see 1 column

Is it possible to change this behavior? I want to show 2 columns in mobile view and 4 colums in PC view. Can this be done? How?

Thanks

0
5 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 11 months ago #115916

In SPPB 3, you you should be able to do that using Columns Option settings in back-end editor.

There is Mobile Layout option here, set "col-xs-6"

info_1074_2023.jpg

so CSS is not needed.

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 11 months ago #115909

Hi there!

Thanks for contacting us.

You can click on the mobile icon on the topbar of the SP Page Builder editor and then you can slide your column bar or input width to adjust the view for the mobile devices.

Here is screenshots for your convenience:

https://prnt.sc/rsMZwRjDVm7z

The following blog post may help:

https://www.joomshaper.com/blog/make-your-columns-responsive-in-sp-page-builder-4

Best Regards

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 11 months ago #115910

Hi Eudardo,

Possible, but not so easy as it was in SPPB 3 ;/ In SPPB 4.0.10:

  1. For that Row where you need it add unique Section ID name, for example, mygrid - using Row Options.
  2. Then use my Custom CSS and Save changes.
@media screen and (max-width: 680px) {
#mygrid .sppb-row-column  {max-width: 50% !important; flex-basis: 50% !important;}
}

Video (with all steps): https://youtu.be/rPPpeY6yRHE

0
EG
Eduardo G.
Accepted Answer
11 months ago #115914

Thanks both. As my SPPB version is 3, I'll try Paul's suggestion.

0
EG
Eduardo G.
Accepted Answer
11 months ago #115921

Perfect solution, Paul. Problem solved. Best regards!

0