Fresh - Clean Installation questions - One image as bg

GK User
Thu Mar 31, 2016 1:55 am
Hi i am trying to recreate my old website with the newest Joomla and with your template.
My new website is located here http://themindgame.gr/v2/

What i would like (i don't know even if it's possible at this point) I would like for my the website to have one image as background.
Disabling the white space everywhere.

Also how can i disable the top menu bar?

Best regards,
Arthur.
User avatar
Fresh Boarder

teitbite
Mon Apr 04, 2016 12:41 pm
Please add this code to override.css and make sure override is enabled in template settings.Hi

To disable menu bar:

Code: Select all
#gkHeaderNav {
    display: none !important;
}


to get rid of white spaces You first need to move Your background under the site. Atm it's only under header area.

Code: Select all
body {
    background: transparent url("http://themindgame.gr/v2/templates/gk_steakhouse/css/background.jpg") repeat scroll 0 0;
}


than You can clean white spaces:

Code: Select all
#gkHeader.menu-visible {
    padding-top: 0;
}

#gkBg {
    background: transparent none repeat scroll 0 0;
}
User avatar
Moderator

GK User
Wed Apr 06, 2016 12:50 am
Thank you :)
User avatar
Fresh Boarder


cron