Shopify themes, liquid, logos, and UX
Hello,
I'm working on the mobile version of my website and I've just seen in the menu page that the end was cut off and the choice of language and currency in white instead of black.
Would anyone know how I can put the text in black and put them on the same line to avoid it being cut off like on the photo?
Here is the link to my site: https://albe.online/collections/all
And I use the dawn theme
Thanks in advance
Solved! Go to the solution
This is an accepted solution.
Hello @albestudios, Please follow these steps to add this CSS code:
1. Access your Shopify Admin.
2. Go to Online Store > Themes.
3. Locate the theme you are currently using and select Actions > Edit code.
4. In a CSS file: Go to Assets, find your CSS file, and add your styles. OR
5. In theme.liquid: Go to Layout, open theme.liquid, and add your CSS inside a <style> tag in the <head> section.
@media screen and (max-width: 749px) {
#menu-drawer .menu-drawer__localization {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 25px;
}
.disclosure .disclosure__button span{
color: #000000 !important;
}
#menu-drawer .disclosure__list li a{
color: #000000 !important;
}
}
Here is the screenshot for the same.
Feel free to reach out if you have any additional questions. If this solution is helpful, please consider liking and accepting it.
S.P
This is an accepted solution.
Hello @albestudios, Please follow these steps to add this CSS code:
1. Access your Shopify Admin.
2. Go to Online Store > Themes.
3. Locate the theme you are currently using and select Actions > Edit code.
4. In a CSS file: Go to Assets, find your CSS file, and add your styles. OR
5. In theme.liquid: Go to Layout, open theme.liquid, and add your CSS inside a <style> tag in the <head> section.
@media screen and (max-width: 749px) {
#menu-drawer .menu-drawer__localization {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 25px;
}
.disclosure .disclosure__button span{
color: #000000 !important;
}
#menu-drawer .disclosure__list li a{
color: #000000 !important;
}
}
Here is the screenshot for the same.
Feel free to reach out if you have any additional questions. If this solution is helpful, please consider liking and accepting it.
S.P
Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024The Hydrogen Visual Editor is now available to merchants in Shopify Editions | Summer '...
By JasonH Sep 2, 2024Note: Customizing your CSS requires some familiarity with CSS and HTML. Before you cust...
By JasonH Aug 12, 2024