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

Problems styling a Custom Link in a Menu

Turns out I was making the omission of adding ‘a’ as the link is actually an anchor. So the working code would be as ff: .custom-link a { color: white !important; font-size: 40px; } In terms of affecting only the text of the link in question.

Dequeue CSS of the Parent Theme

Tony has it right, you can dequeue the style without the site having an error. That is because of the way CSS works. If the DOM can’t find a specific CSS class/ID that is in the HTML it is simply ignored. Tony is also right, that you may need to add some styles back in … Read more