accentsouthwest-jg Posted May 17, 2023 Posted May 17, 2023 I’d appreciate some help with the appearance of the menu on the mobile version of my site at https://www.accentsouthwest.com. I’ve used some CSS to enhance it (thanks Rebecca Martin for making available your https://www.rebeccagracedesigns.com/blog/change-width-of-mobile-menu) and added a line to change the background color to match the rest of the site, but I’ve gotten nowhere with how to change the font color, type and size, as well as the background color of the logo section. /* Half Width Mobile Menu */ .header-display-mobile .header-title-text { width: 87vw !important; /*width of the header menu */ font-size: 0.5rem !important; /*site-title font-size */ } .header-menu { width: 87vw; /*width of the header menu */ } #page { transition: opacity 0.75s; /* transparency animation */ } .header--menu-open #page { opacity: 70%; /* makes page transparent when mobile menu is open */ background-color:#5f636a; /*background color of the header menu */ } .header-menu-nav-folder-content { justify-content: flex-start; /* vertical alignment of navigation */ text-align: left; /* navigation text alignment */ color:#ffffff; /*text color of the header menu */ background-color: #5f636a; /*background color of the header menu */ } .header-menu-nav-folder:not(.header-menu-nav-folder--active) { display: none; /* hides non-active folder */ } .header-menu-cta { width: 60vw; /* width of button */ } .header-menu-cta a { min-width: unset !important; } Thanks for any help with this. Joe
tuanphan Posted May 22, 2023 Posted May 22, 2023 Use this code .header-menu-bg.theme-bg--primary { background-color: #699 !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Solution accentsouthwest-jg Posted May 30, 2023 Author Solution Posted May 30, 2023 On 5/21/2023 at 8:31 PM, tuanphan said: Use this code .header-menu-bg.theme-bg--primary { background-color: #699 !important; } Thank you, tuanphan. That worked perfectly. I'm still in the learning stage on all that CSS can do and I appreciate the help! tuanphan 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment