How can i remove the word Language from here in the footer?
Website is
A user seeks to remove the word “Language” from their website footer at www.stitchesdxb.ae.
Multiple solutions provided:
CSS approach (most common): Add display:none styling to hide the language label. Contributors suggest targeting h2#FooterLanguageLabel or .footer_localization h2 in various CSS files (base.css, section-footer.css, or via custom style tags in theme.liquid).
Template editing approach: One contributor recommends locating and commenting out the “FooterLanguageLabel” code directly in the footer.liquid file for a cleaner solution that can be reversed if needed.
Implementation steps consistently include:
All solutions appear viable, with contributors providing screenshots demonstrating expected results. The discussion remains open with multiple accepted solution options available.
Hi @stitchesdxb ,
Please follow the steps below to implement the solution:
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
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
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 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.
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.