Fixed Footer

Feel free to talk about everything related to our Joomla Products
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Wed May 22, 2013 10:30 pm
I'm trying to add a fixed footer to my site, like the one here showing the social icons - http://www.littlebootsmusic.co.uk

I've noticed that Gavick also has a fixed footer on this page - http://demo.gavick.com/

What's the easiest way to accomplish this? I've tried a few things and none are working so far. I'm a designer, not a coder.

Please help me :ugeek: !

(Pls refer to attached pic for reference)
Image
User avatar
Junior Boarder

GK User
Wed May 22, 2013 11:10 pm
Hi,
CSS's fixed-positioning functionality is what you need.

Code: Select all
.element   
{
 bottom: 0;
    height: 65px;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}


Without URL to your webpage I can not write right name of "element".

Then you need a module with content (icons or other stuff), create a Custom HTML, publish it and next you have to add this css to it, that's all. :silly:

All depends on template which you use. But rules are this same.
User avatar
Platinum Boarder


cron