This topic has 2 replies, 2 voices, and was last updated 8 years, 1 months ago ago by Eva Kemp
So I can change the appearance of the side menu of my store (color, border, picture) in which file I make these changes?
Hello,
Use this code in custom.css file:
.widget_nav_menu li a {
color: red;
}
.widget_nav_menu ul {
border: 1px solid green;
}
To change picture you can use any font Awesome icon http://fontawesome.io/icons/ and write its code instead of “f105”:
.widget_nav_menu li::before {
content: "\f105";
}
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up