BenJohnson Posted August 22, 2020 Posted August 22, 2020 Site URL: https://www.benjohnsonphoto.com/ Hello, I'm wanting to alter the mobile menu overlay colours, however I am unable to find it in the squarespace design settings or use the correct CSS. Currently, it has a black background and white text. I would like to reverse this so the background is white and text black. Cheers, Ben
tuanphan Posted August 22, 2020 Posted August 22, 2020 If you still can't find the setting, add this to Home > Design > Custom CSS @media screen and (max-width:767px) { .header-menu-bg.theme-bg--primary { background: white !important; } .header-menu-nav * { color: black !important; fill: black; } } 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!)
BenJohnson Posted August 23, 2020 Author Posted August 23, 2020 10 hours ago, tuanphan said: If you still can't find the setting, add this to Home > Design > Custom CSS @media screen and (max-width:767px) { .header-menu-bg.theme-bg--primary { background: white !important; } .header-menu-nav * { color: black !important; fill: black; } } This worked, thank you @tuanphanhowever the exit cross is white and not visible.
tuanphan Posted August 23, 2020 Posted August 23, 2020 @media screen and (max-width:767px) { .header-menu-bg.theme-bg--primary { background: white !important; } .header-menu-nav * { color: black !important; fill: black; } .burger--active .burger-inner>div { background: black !important; } } New code 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!)
BenJohnson Posted August 23, 2020 Author Posted August 23, 2020 22 minutes ago, tuanphan said: @media screen and (max-width:767px) { .header-menu-bg.theme-bg--primary { background: white !important; } .header-menu-nav * { color: black !important; fill: black; } .burger--active .burger-inner>div { background: black !important; } } New code Sensational! Thank you kindly. I was also wanting to add a hover effect for my logo on the desktop. I will uploading an image to replace the current generic title and this will be black. I would like to have the hover change from black to grey. I will have a separate logo image with the specified grey, I'm just unsure how to create the hover with CSS.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.