Joomla Articles Display - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Joomla Articles Display

PL

Paul Lavelle

SP Page Builder 2 years ago

Hi,

How do you create a space around the articles when they are pulled into SP page Builder using "Content" "Articles" Addon. I've tried margin and padding and nothing works ?

Thanks

0
7 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #108858

HI Paul,

Indeed, it's a bug inside SPPB 4.0.8 - it will be fixed in next few days.

Solution for now (today):

.sppb-articles-carousel-column {padding: 0 15px;}

Custom CSS way!

0
PL
Paul Lavelle
Accepted Answer
2 years ago #108860

Great, thanks.

0
PL
Paul Lavelle
Accepted Answer
2 years ago #108861

Sorry one further thing, is it possible to control the size of the image and item ?

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #108865

from Addon settings - not yet.

Design customization => via Custom CSS

0
PL
Paul Lavelle
Accepted Answer
2 years ago #108869

Thanks but can you help with the CCS? I can get it to change in browser but can't get code to work

Is it this? div.sppb-articles-carousel-column {width: 250px;}

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #108872

Are you sure that 250px is OK, not too small? Plus, think about mobile devices, where screen is smaller than 760px, but bigger than 250px, min. 320px right.

Example CSS may look like that:

@media screen and (min-width: 760px) {
.sppb-articles-carousel-column {
 width: 250px; max-width: 250px; }
    }
0
PL
Paul Lavelle
Accepted Answer
2 years ago #108878

Agreed on site, thanks for you help.

0