
Originally Posted by
CookieMonster
This is probably an easy answer, but I could not find this information anywhere in the forum and trial & error has not been on my side. I am trying to edit the colors of this template, so I found the colors stylesheet in the css for the desktop and tablet versions, evidently, as those have changed to the colors I want, but I cannot find where to edit the dark gray and medium gray colors in the attached mobile screenshot. Please tell me where the file and lines of code are "hiding" so I can edit those mobile colors. I am using the very latest version of ZenCart available. Thanks!
We always add stylesheet_zcustom.css to our CSS folder and use it to store changes we make to the site. Keeps them all in one place where we can find them.
Either there, are at the end of any stylesheet you prefer, you can add
Code:
/* BOF Color Changes jquery.mmenu.all.css (for menu in mobile view) */
/*.mm-menu.mm-theme-dark, .header {background:none !important;}*/
/* These settings control the colors of the top nav bar in Mobile/Tablet view */
.mm-menu.mm-theme-dark.mm-vertical {color:#FFFFFF !important;/*font-weight:bold;*/}
a.mm-next.mm-fullsubopen::after {border-color: #FFFFFF !important;}
i.fa.fa-bars {color: #FFFFFF;}
/*i.fa.fa-home:hover, i.fa.fa-arrow-circle-up:hover, i.fa.fa-sign-in:hover {color:#f66;}*/
#navMain ul li a:hover, #navSupp ul li a:hover{color:#FFFFFF;}
em.mm-counter, .mm-next {color:#FFFFFF !important;}
/* EOF Color Changes jquery.mmenu.all.css (for menu in mobile view) */
NOTE: This is a quick grab from one of our sites and you may or may not want the three lines commented out for your application. The !important needs to be used as there is no guarantee that even the stylesheet_zcustom.css will load last on any page or responsive view.
Of course, the colors are yours to play with.
Bookmarks