After Updating To J5 My Templates Bottom Section is Borken - Question | JoomShaper
🎃 Halloween Sale is Live! Get 35% OFF on all plans. Sale ends soon! Get Offer

After Updating To J5 My Templates Bottom Section is Borken

M

Michael

SP Page Builder 4 months ago

Hi guys,

After updating my site to J5 everything is fine, but the 'Bottom' section of the site isn't working correctly.

The 'Bottom' layout should be: 2+2+4+4 (which is what it is set to in the Template Layout section).

Each bottom module name - is still set correct being: Bottom1,Bottom2,Bottom3,Bottom4,

But it is showing 'down the page' ... instead of across the page ... like the modules are all set to Bottom1 only.

The URL on the staging server in is the hidden area so you can see what I mean - just scroll down to the bottom of the home page to the Bottom section (dark brown area) to see what I mean.

Look forward to any assistance you can provide.

0
3 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 4 months ago #195307

Hi Mike,

It's casused by wrong CSS style used for #sp-bottom2 in Custom CSS??

#sp-bottom2 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

width: 100% made the mess !!

Maybe you used it inside Template Options > Custom Code > Custom CSS ???

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 4 months ago #195308

In case of you cannot find it, use

@media screen and (min-width: 860px) {
#sp-bottom2 {width: auto !important;}
}
0
M
Michael
Accepted Answer
4 months ago #195311

Hi Paul,

Thanks!!! That fixed it.

No it was just and update from J3 to J5... and I didn;t edit or change and CSS... so not sure why it broke.

Thanks for the fix though!

0