Customization of Off-Canvas Menu

Multipurpose WordPress Theme Forum Support
GK User
Fri Nov 20, 2015 11:47 am
I'm using the Off-Canvas menu on the Quark ECommerce theme, but when it is opened, the background color is black and the fonts are a grey and white for the page I'm currently one.
What code can I use to change the background color and tell the fonts and hover font to be different too?
Can you also be specific about where I place that code? I've looked in the stylesheet and editor sheet and there is a lot there...so I really need specific instructions. I'm doing this from within the WordPress dashboard and would prefer doing it there.

Thank you.
User avatar
Fresh Boarder

GK User
Mon Nov 23, 2015 10:17 am
Hi,

If you want to do this within the WordPress dashboard, you have to install any custom css plugin. Then please add the following custom css code:

Code: Select all
#aside-menu {
  background-color: #ddd
}
#aside-menu li a,
#aside-menu li li a {
  color: #link_color;
}

#aside-menu li a:hover,
#aside-menu li li a:hover,
#aside-menu li.current_page_item > a {
  color: #link_hover_and_current_color;
}

User avatar
Moderator

GK User
Mon Nov 23, 2015 5:48 pm
Thanks! Worked great!
User avatar
Fresh Boarder


cron