Change the background color of the footer menu area

Responsive WordPress theme suitable for Schools, Colleges or educational websites.
GK User
Tue Mar 29, 2016 1:26 pm
Hello,

How do I change the background color or insert a background picture for the bottom menu area (footer)?

Pls advice. Thanks.
User avatar
Senior Boarder

Joshua M
Wed Mar 30, 2016 8:02 am
Hi,

Please add the following code into the theme’s css/override.css file (make sure to enable the “Use the override.css file” option in Template options > Advanced in the WordPress backend) or use any custom css plugin:
Code: Select all
#gk-bottom5 {
   background: #ddd;
}

and add your own color or image.
User avatar
Moderator

GK User
Wed Mar 30, 2016 8:25 am
Thanks, this works. But if I add an image would like to change the color of the menu items title and text to white. What css class should I use for that?

Thanks.
User avatar
Senior Boarder

Joshua M
Wed Mar 30, 2016 8:46 am
Try to add the following custom css code:

Code: Select all
#gk-bottom5 .box a,
#gk-bottom5 .box .box-title {
   color: #fff;
}

You can use a Firebug or Google Dev Tools to inspect these elements on your website and add your own css code, please check i.e. this article:
https://www.gavick.com/documentation/jo ... ss-changes
User avatar
Moderator

GK User
Wed Mar 30, 2016 9:12 am
Works great. Thanks.

There is a horizontal line that is displayed above the footer menus. Pls see screenshot. Pls advice on how to remove this. Thanks.
User avatar
Senior Boarder

Joshua M
Fri Apr 01, 2016 10:26 am
Hi, Try to add also the following css code:
Code: Select all
.gk-page-wrap + #gk-bottom5 > div:before {
   display: none;
}
User avatar
Moderator

GK User
Sat Apr 02, 2016 6:43 am
Great. Thanks.
User avatar
Senior Boarder


cron