Theme: Twentynineteen // How to exclude cookie-control triangle and star svg from being overwridden by theme css “svg { fill: currentColor; }”

Dropping this line of code in my twentynineteen-child theme’s style.css fixed the issue: button#ccc-icon *:not(g) { fill: inherit; } Explanation: Line 6353, in style.css of the twentynineteen (parent) theme, i. e. svg { transition: fill 120ms ease-in-out; fill: currentColor; } overrides the cookie-control module’s css for the button that opens and closes the module. The … Read more

Gutenberg CSS Issue

Your blockquote has a <p> tag in it that overwrites the font-size attribute. Either delete the <p> tag or add css for bolckquote p or/and .wp-block-quote p

Customizer Appearance Issue

It sounds like it could be a server side caching issue. Assuming the refresh you mention is to your browser, this would not necessarily fix the issue. Shared hosting servers can have various tiers of server side caching and/or services like Cloudflare that can cause issues like you describe. Without knowing the specifics of your … Read more