Custom Width of Footer

Ecommerce design Joomla template to start your online business with VirtueMart and additional eshop features.
GK User
Thu Apr 18, 2013 6:56 pm
Hi there,

I want to change the width of the footer(#gkBottom1 or the #gkwrap3) in the gk_yourShop theme.

I've tried to modify the css, with the override.css file

#gkBottom1{
background-color:#000;
padding:10px;
height:300px;
width:100%;
}

but upon using the web inspector, I know the template style within the Joomla administrator panel width setting is not letting this happen.

How do I change the width then?

Thanks
User avatar
Fresh Boarder

GK User
Thu Apr 18, 2013 8:07 pm
#gkBottom1 is a nested container inside another container which has fixed width of 910px so when you are using 100% width it will be inside that main container only.

However you can try following css which will start it from left 0px and use 100% or any other width you define in px.

Code: Select all
#gkBottom1 { position: absolute; left:0; width:100%; }


See you around...
User avatar
Platinum Boarder


cron