Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi!
I have selective menu colours on desktop (ie some pages have green nav text, others have beige) to maintain contrast and legibility.
Unfortunately this change isn't coming through on mobile. Can someone please help me understand why this is happening and how to please fix it? Thank you!
My website is unadiamond.com
@unadiamond can you please share the page link where you are facing this issue?
of course! a good example is https://www.unadiamond.com/pages/contact - the burger menu on mobile as well as the text within it is all beige on mobile, and green on desktop
Hi @unadiamond
Please share the page facing the issue ❤️
Best,
Daisy
Hi @unadiamond
/* Desktop-specific styles */
@media (min-width: 768px) {
.nav-text.green {
color: #00ff00; /* Example green */
}
.nav-text.beige {
color: #f5f5dc; /* Example beige */
}
}
/* Mobile-specific styles */
@media (max-width: 767px) {
.nav-text.green {
color: #00ff00; /* Same green for mobile */
}
.nav-text.beige {
color: #f5f5dc; /* Same beige for mobile */
}
}
I hope this helps
Best,
Daisy