Columns N Rows Question - Question | JoomShaper

Columns N Rows Question

K

KBS

SP Page Builder 1 year ago

Hi,

I need an advise or guide frm the master here..

i have 13 clients logo which i will display to my website using two rows..

1st row contain 7 clients logo or image (using clients addon or image layout addon) 2st row contain 6 clients logo or image (using clients addon or image layout addon)

and i need to make sure all the 13 logo same in width n height.

tq so much 4 ur help.

0
10 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 year ago #109636

Thanks Pavel for sharing the solution.

Hi KBS

You can now close this post by accepting the answer.

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 year ago #109145

Hi

Thanks for contacting us. Could you please give me a screenshot of your issue?

-Regards.

0
K
KBS
Accepted Answer
1 year ago #109320

hi tq for reply..

now i need to make it 2 rows & 7 column.... if possible using image layout element..

0
Pavel
Pavel
Accepted Answer
1 year ago #109326

Hi.

Add image addons in the section whitout deviding the section to multi columns.

Set margin-botom to 0px in each image addon settings.

Add clients-grid class name in column settings.

Use following CSS

.clients-grid .sppb-column-addons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
}

You wil get such layout on screens > 1400 px width.

On screens < 1400 px width images will be automatically transferred to a new row

If you use SPPB 4 (that I do not recommend) - everything is similar there

0
Pavel
Pavel
Accepted Answer
1 year ago #109327

If you do not want that images will be automatically transferred to a new row on screens < 1400 px width use this code

.clients-grid .sppb-column-addons {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}
0
K
KBS
Accepted Answer
1 year ago #109329

ok tq so much pavel! let me try 1st... btw tq so much!

0
K
KBS
Accepted Answer
1 year ago #109346

where to put tis ? :-

.clients-grid .sppb-column-addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; }

columns or images?

0
Pavel
Pavel
Accepted Answer
1 year ago #109352
0
K
KBS
Accepted Answer
1 year ago #109392

yes! tq pavel! ;) tq sooooo much!

0
Pavel
Pavel
Accepted Answer
1 year ago #109439

You are welcome

0