All things Shopify and commerce
This is an accepted solution.
Hello @stitchesdxb
Go to online store ----> themes ----> actions ----> edit code ---->
open ---->assets ------>open---->section-footer.css and in line number 276
you find this code
.footer__localization h2 {
margin: 1rem 1rem .5rem;
color: rgba(var(--color-foreground), .75);
}
replace your code with this code
.footer__localization h2 {
margin: 1rem 1rem .5rem;
color: rgba(var(--color-foreground), .75);
display: none;
}
and result will be
thank you
This is an accepted solution.
Hello @stitchesdxb
Go to online store ----> themes ----> actions ----> edit code ---->
open ---->assets ------>open---->section-footer.css and in line number 276
you find this code
.footer__localization h2 {
margin: 1rem 1rem .5rem;
color: rgba(var(--color-foreground), .75);
}
replace your code with this code
.footer__localization h2 {
margin: 1rem 1rem .5rem;
color: rgba(var(--color-foreground), .75);
display: none;
}
and result will be
thank you
Hi @stitchesdxb ,
Please follow the steps below to implement the solution:
1. In your Shopify admin, navigate to Online Store under Sales Channels. Click the three dots next to the theme you want to edit, and select Edit Code.
2. Locate the main CSS file in your theme, such as `main.css`, `theme.css`, `base.css`, or `style.css`, It would be 'base.css ' here since you are using dawn theme and add the following CSS code:
h2#FooterLanguageLabel {
display: none;
}
Result:
I hope this helps! If it does, please like it and mark it as a solution!
If you need further assistance, feel free to reach out!
Regards,
Sweans
Hello @stitchesdxb
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
h2#FooterLanguageLabel {
display: none !important;
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Hello @stitchesdxb
Go to online store ----> themes ----> actions ----> edit code ---->assets....>Section.footer.css Add the following code in the bottom of the file
h2#FooterLanguageLabel {
display: none;
}
Result will be
Buy me a Pizza
If this was helpful, hit the like button and accept the solution.
Thanks
Hello @stitchesdxb
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> section-footer.css
add this code at the end of the file.
.footer__localization h2 {
display: none !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
@stitchesdxb Please follow the below steps to remove the text "Language" title from the footer section. Let me know whether it is helpful for you.
<!-- <h2 class="caption-large text-body" id="FooterLanguageLabel">
{{ 'localization.language_label' | t }}
</h2> -->
hey @stitchesdxb
if you think i was helpfull could you buy me a coffee ??
We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024Thanks 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, 2024