Okay
  Public Ticket #149398
FOOTER ALWAYS VISIBLE
Closed

Comments

  • carlos started the conversation
    Is there a custom CSS to make the footer (the one that holds the social media icons) to be fixed at the bottom (just like the top menu) so it's always visible?
  •  982
    ThemeNectar replied

    Hey - add this into you Custom CSS box located in your Salient Options panel:

    body #footer-outer {
       position: fixed!important;
       bottom: 0px!important;
       width: 100%;
    }

    Cheers

  • carlos replied

    this is for both footers?? I only need the thin at the very bottom (the one that holds the social media icons), not the one that holds the widgets.

  •  982
    ThemeNectar replied

    Change that to:

    body #footer-outer #copyright {
       position: fixed!important;
       bottom: 0px!important;
       width: 100%;
    }

    Cheers :)

  • Tobias replied

    Hi

    I was needing this an although it works well in that it fixes it to the bottom, when I add it it removes the footer background I have

    http://alfornok.nextmp.net/

    Thanks


  •  982
    ThemeNectar replied

    Hey Tobias, I'm seeing an inline style on your footer that's setting the BG transparent. Are you sure this only occurs when using the snippet above?

    You could always solve it with this too:

    body #footer-outer #copyright {
       position: fixed!important;
       bottom: 0px!important;
       width: 100%;
       background-color: #000!important;
    }
    

    Cheers