Footer to stick in ESC

paradise623
Giga Expert

Hi All,

 

I'm looking for assistance with getting the footer to stick on the ESC homepage. Has anyone had experience with this?

 

The footer currently disappears when I scroll and I want it to stick so that it does not move when I scroll up and down. 

2 REPLIES 2

SAI VENKATESH
Tera Sage
Tera Sage

Hi @paradise623 

 

You can follow the below path

 

Go to Service Portal --> Headers and Footers 

in that open Employee center footer and scroll down 

you can see Fixed Footer as "false" and you can make it "true" and also attached the image CA109.PNG

 

Thanks and Regards

Sai Venkatesh

Salina Budye7
Tera Expert

Hi @paradise623,

Follow below steps:

  1. Go to your portals theme record.
  2. Select a footer widget, you can use the out-of-box “Sample Footer” as a test.
  3. Make sure the “Fixed footer” checkbox is unchecked.
  4. Paste the following snippet of CSS into the “CSS variables” text area, or alternatively you can include it in a CSS Include.

    Script :
    section.page {
      display: flex;
      flex-direction: column;
      display: -ms-flexbox;
      -ms-flex-direction: column;
    }
    section.page > main.body,
    section.page > section.body {
      flex-grow: 1;
      flex-shrink: 0;
      -ms-flex-positive: 1;
    }

Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks

Salina Budye