Deal Plaza template
- Posted by jacoba (3) Offline
Yes, the blue' color is the 'active' state of the menu items. Submenu's are silver
Thanks!
10 years 2 days ago #7
by jacoba
Thanks!
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
Hi copby, sorry for delay in responding.
You can change the blue color my modifying the templates/deal_plazza/css/menu.css
Around line 234 you will see this code :
you can change it to
10 years 16 hours ago #8
by TemplatePlazza
You can change the blue color my modifying the templates/deal_plazza/css/menu.css
Around line 234 you will see this code :
.menusuperfish li.active a,
.menusuperfish li.activesfhover a{
color:#fff;
font-weight:700;
background-color: #309dcf;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(48, 157, 207)), to(rgb(37, 129, 172)));
background-image: -webkit-linear-gradient(top, rgb(48, 157, 207), rgb(37, 129, 172));
background-image: -moz-linear-gradient(top, rgb(48, 157, 207), rgb(37, 129, 172));
background-image: -o-linear-gradient(top, rgb(48, 157, 207), rgb(37, 129, 172));
background-image: -ms-linear-gradient(top, rgb(48, 157, 207), rgb(37, 129, 172));
background-image: linear-gradient(top, rgb(48, 157, 207), rgb(37, 129, 172));
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#309dcf', EndColorStr='#2581ac');
}
you can change it to
.menusuperfish li.active a,
.menusuperfish li.activesfhover a{
color:#fff;
font-weight:700;
background-color: red;
}
Please Log in or Create an account to join the conversation.