Shopify themes, liquid, logos, and UX
hello, i have trouble to change the white background color of this specific page for a black background : https://mobilegear.fr/pages/questions-frequentes
I don't wanna change for a black background for all of the pages on my website but just for this specific page.
Also i would like to change the color of the h1 title "question fréquentes" for white to be visible ? thx you !
Solved! Go to the solution
This is an accepted solution.
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>
.section-template--21244025897309__main-padding {
background: unset !important;
}
#shopify-section-template--21244025897309__main h1 {
color: #fff !important;
}
.faq-wrapper article p {
color: #fff !important;
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Hello @Sauron6263
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
{% if page contains 'questions-frequentes' %}
<style>
section#shopify-section-template--21244025897309__main {
background: #000 !important;
}
.section-template--21244025897309__main-padding {
background: #fff !important;
}
</style>
{% endif %}
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
hello, thx you that was the idea, but i was looking to put the page completeley black (where i put the red line also)
This is an accepted solution.
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>
.section-template--21244025897309__main-padding {
background: unset !important;
}
#shopify-section-template--21244025897309__main h1 {
color: #fff !important;
}
.faq-wrapper article p {
color: #fff !important;
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025