Questions about Publisher theme

Questions about Publisher theme

jakeom
Visitor
1 0 0

Hihi. I want to change background color to black, and typography to white. I have tried color schemes, but its not working. Does anyone know css for this change?

Reply 1 (1)

Promer
Shopify Partner
312 16 92

Hi @jakeom 

 

Go to "Theme settings" > "Theme editor" > "Custom CSS" and add the following code:

 

body {
     background-color: black !important;
     color: white !important;
}

 

The !important rule ensures these styles override the theme's defaults. If specific elements still aren't changing, you might need more targeted CSS selectors. For most text elements like headings, try adding h1, h2, h3, h4, h5, p, span { color: white !important; } to catch everything

 

Hope this helps 🙂

- Was my answer helpful? Please hit Like or Mark it as solution!
- Promer AI: AI-powered CRO Agents audit stores, uncover conversion blockers & bulk-generate high-impact content.
- Start your FREE trial today!