Dear Elaheh Tabbakh Maher,
1. go to your_site/templates/sj_fashionstore2/css/template.css and:
- find:
.sj-accordion-menu > li > .sj-item-wrapper a {
font-size: 145%;
}
=>
.sj-accordion-menu > li > .sj-item-wrapper a {
font-size: your_px;
color:your_color;
}
2. go to your_site/modules/mod_sj_accordionmenu/assets/css/style.css and:
- find:
.sj-accordion-menu li ul li .sj-item-wrapper {
height: 30px;
}
=>
.sj-accordion-menu li ul li .sj-item-wrapper {
min-height: 30px;
overflow: hidden;
}
- find:
div.sj-ul-wrapper > ul > li .sj-menu-link{
max-width: 175px;
white-space: nowrap;
overflow: hidden;
}
=>
div.sj-ul-wrapper > ul > li .sj-menu-link{
max-width: 175px;
/*white-space: nowrap;*/
overflow: hidden;
font-size:your_px;
color:your_color;
}
- find:
div.sj-ul-wrapper > ul > li{
background: url(../images/menu_level2_bg.png) repeat-x;
margin: 1px 0 0;
}
div.sj-ul-wrapper > ul > li.current.opened ,
div.sj-ul-wrapper > ul > li:hover
{
background: url(../images/menu_level2_bg_active.png) repeat-x;
}
=>
div.sj-ul-wrapper > ul > li{
background: url(../images/menu_level2_bg.png) repeat;
margin: 1px 0 0;
}
div.sj-ul-wrapper > ul > li.current.opened ,
div.sj-ul-wrapper > ul > li:hover
{
background: url(../images/menu_level2_bg_active.png) repeat;
}
Thanks!