Remove grey background

Winter sport ecommerce template for Joomla with VirtueMart support
GK User
Fri May 17, 2013 12:19 am
Hi,

I have looked everywhere in the css and i cannot remove the grey background where the copyright is:

Image
imagenes gratis

how do i remove the grey frame here:

site: http://174.120.3.250/~sweet853/04bicis.ec

thanks
User avatar
Fresh Boarder

GK User
Fri May 17, 2013 12:35 am
Color is added at the end of background image in body selector.

Code: Select all
body {
    background: url("../images/style1/background_jo2.jpg") no-repeat scroll center top #343434;
}


You can add following to css/override.css

Code: Select all
body {
    background: url("../images/style1/background_jo2.jpg") no-repeat scroll center top transparent !important;
}


And enable css override option in template settings > advanced settings > css override "on".
User avatar
Platinum Boarder

GK User
Fri May 17, 2013 1:54 am
Hi i tried it but it does not work

it creates a white area below the area i want to delete...

http://174.120.3.250/~sweet853/04bicis.ec/

in made the change in the override
User avatar
Fresh Boarder

GK User
Fri May 17, 2013 3:01 am
Well you asked to remove the gray color and if there is no other background color it shows white.

You need to define background color for footer.

Example black background.
Code: Select all
#gkFooterWrap { background: #000;}


Also center of your background image is empty or white color so it will be still visible.
User avatar
Platinum Boarder

GK User
Fri May 17, 2013 2:15 pm
Hi thanks for you answer, I think we are almost there!

Sorry if i explained it badly before,

The thing that i dont understand is how to delete completely the green bordered frame in this screenshot?

Image

I can't "catch" it with css

http://174.120.3.250/~sweet853/04bicis.ec/

thanks for your help
User avatar
Fresh Boarder

GK User
Sun May 19, 2013 6:35 am
You can't remove that section because there is nothing there :)

White block is coming from your background image. Centre of your background image is white and html container is bigger in height then "body" container so body container does not cover that section. So either you need to edit your background image or add some content to increase body height until it covers the empty white area.

See you around...
User avatar
Platinum Boarder

GK User
Sun May 19, 2013 3:34 pm
ok thanks!

I will try that
User avatar
Fresh Boarder

GK User
Mon May 20, 2013 12:53 am
No problem at all, see you around...
User avatar
Platinum Boarder


cron