Skip to content
John Regan edited this page Aug 10, 2015 · 5 revisions

####Will this Plugin work on my WordPress.com website? Sorry, this plugin is available for use only on self-hosted (WordPress.org) websites.

####My Sidebar Options are gone. Help!

In version 3.0 the sidebar options were removed to streamline the plugin.

####Does Simple Custom CSS support using double quotes (")?

Yes! And you no longer need to click a checkbox to make it happen.

####Why isn't my Custom CSS showing up?

There are several reasons this could be happening:

Your CSS is targeting the wrong selector.

Your CSS selectors aren't specific enough.

For instance, you may have:

a {
	color: #f00;
}

When you need:

#content a {
	color: #f00;
}

The specificity you need depends upon the CSS rules you are attempting to override.

Your CSS isn't valid.

Please check your CSS at the W3C CSS Validation Service.

Clone this wiki locally