Dear Manos Menexis,
Thank you for the contacting us.
For the issue , please open file (/templates/sj_sportstore/css/template-blue.css), following these steps:
- To change menu link item, find this code
#yt_menuposition ul.navi li.level1 .item-link {
margin: 0;
line-height: 18px;
padding: 35px 10px 30px 10px;
color: #fff;
font-size: 128.57%;
text-transform: uppercase;
display: block;
}
and change color:#fff;
- To change link active:
#yt_menuposition ul.navi li.level1.active {
background: #4080ca;
}
#yt_menuposition ul.navi li.level1.active:after {
border-style: solid;
border-width: 12px 44px 0;
bottom: 0px;
content: "";
height: 0;
left: 0;
position: absolute;
width: 0;
border-color: #4080ca transparent transparent;
transition: border 1s ease-in-out 1s, bottom 1s ease-in-out 1s;
change border-color: #4080ca transparent transparent; and background: #4080ca;
- To change link hover:
#yt_menuposition ul.navi li.level1:hover, #yt_menuposition ul.navi li.level1.hover {
background: #4080CA;
}
#yt_menuposition ul.navi li.level1:hover > .item-link, #yt_menuposition ul.navi li.level1.hover > .item-link {
background:#4080CA;
cursor: pointer;
}
change background:#4080CA;
Thanks!