Footer Incl Extra Section, Always At The Bottom - Question | JoomShaper

Footer Incl Extra Section, Always At The Bottom

S

Seppe

Helix Framework 1 year ago

Good morning.

I have a section which exists of a custom layout: 2+2+2+2+2+2 (so 6 columns) I have a footer which has the layout: 3+6+3

Now I want to make 1 big footer of the 2 of them. Is that possible?

And if yes, I want this to be always at the bottom of the page.

I tried some of the CUSTOM CSS codes here, but that doesn't seem to work. the only code that works is with the "FIXED", but then the text of the page, when it's more than screenhigh, goes over the footer.

0
5 Answers
Atick Eashrak Shuvo
Atick Eashrak Shuvo
Accepted Answer
Support Agent 1 year ago #170873
0
S
Seppe
Accepted Answer
1 year ago #170920

Good afternoon If you follow the link for the "Helix Ulitumate", and you take the first image "layout grid"... I'm trying to combine the "bottom" and the "footer".

But that seems not possible

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #170878

In big short, you have two options:

  1. Rebuild current column grid in Helix Ultimate > Layout
  2. Or use SPPB module to design 6 column grid and use all content you need there and publish it on footer1 or footer2.
0
S
Seppe
Accepted Answer
1 year ago #170922

Good afternoon Paul

I'm trying for option 1. like I described above

0
S
Seppe
Accepted Answer
1 year ago #170926

I think I found the solution in some previous posts

if I use this code, and I put them in the "custom code"-"custom css" in Helix... then it seems to work.

.body-innerwrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#sp-main-body {
    margin-bottom: auto;
}
0