change color menu & sub menu theme

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
creat015
User
Posts: 79

change color menu & sub menu theme

Post by creat015 »

Hello Sir

i want to ask, i'm still confused for setting color theme for menu and sub menu

i want to if a menu clicked change color (example : orange), if not clicked no color (example : #ffffff) << for menu and submenu sir

i confused how to change it in (sidebar (layout)) how to sir?

please help me

thank you


creat015
User
Posts: 79

Post by creat015 »

i found solution for this problem

first in menu "HTML" choose theme and then choose tab "Styles"

and copy all data style to notepadd++ and save with name style.css or anything you want

after save open style.css and search this : (this code for submenu, if clicked or active submenu will be color orange)

body[class^=skin-][class$=-light] .treeview-menu > li.current > a {
font-weight: 600;
background:#FF8F00;
color: #000000; }

add this code :
background:#FF8F00; (change color anything you want)

and this code for main menu :

.skin-black-light .sidebar-menu>li.active>a {
background:#FF8F00;
}

add new class :

.skin-black-light .sidebar-menu>li.active>a {
and add code background:#ff8f00
}

thank you


Post Reply