Change footer background in startup template?

Support help forum dedicated to free and commerical templates for Joomla 3 and 2.5 version.
GK User
Sun Apr 13, 2014 6:33 pm
Hi,

How can I change the footer background color in the Startup template?

https://www.gavick.com/joomla-templates ... p,104.html
User avatar
Fresh Boarder

teitbite
Sun Apr 13, 2014 6:44 pm
Hi

Please add this code to override.css and remember to allow using override in template settings:

Code: Select all
#gkFooter {
padding: 32px auto 100px !important
margin: 0 !important;
background-color: red;
}
User avatar
Moderator

GK User
Sun Apr 13, 2014 7:02 pm
Hi,

Thanks for the quick reply, but your suggestion doesn't seem to be enough to fill the entire footer. Here is the result:

Image
User avatar
Fresh Boarder

GK User
Sun Apr 13, 2014 8:14 pm
auto is not a valid attribute for padding property.

I fixed the footer background by applying this style on gkFooter:
Code: Select all
#gkFooter {
    padding: 50px !important;
    margin: auto !important;
}


and adding a <section></section> around the footer.
User avatar
Fresh Boarder

teitbite
Mon Apr 14, 2014 8:30 pm
Hi

Yes, You are right. I have replaced margin with padding and "auto" got stuck there not adjusted by firebug. Glad You've made it working anyway.
User avatar
Moderator


cron