When I press the 3 dots on the top right of my website the menu slides in from the left. The first 2 rectangles are filled in with the right color and are readable. But for some reason every one after that does not have any color and can not be seen well. How can I fix this?
Announcement
Collapse
No announcement yet.
Responsive Menu Problem
Collapse
X
-
Can you show us your store?Designer, musician
3DCart sites
www.fireflyaz.com
www.activeprintmedia.com
Want something designed? [email protected]
-
-
MichaelB
For this specific issue, Go to your active css file default_modified.css
Find this rule:
.top-menu li:first-child {
background: #666666 none repeat scroll 0 0;
border: 1px solid #333333;
}
-CHANGE TO-
.top-menu li:first-child {
border-top: 1px solid #333333;
}
Find this rule:
.top-menu li {
border: medium none;
display: block;
margin: 0;
text-align: center;
}
-CHANGE TO-
.top-menu li {
background: #666666 none repeat scroll 0 0;
border: medium none;
display: block;
margin: 0;
text-align: center;
}
Now save, clear store cache, and refresh. Hope this helps.
Thanks,
Shaun
Comment
-
Comment