Versioning @import of parent theme’s style.css

Context I built a child theme based on Twenty Thirteen which works quite well. After updating the parent theme to version 1.3, I noticed strange behavior with the styling which was caused by a cached parent theme’s style.css. Here is the content of my child theme’s style.css (omitting headers) /* =Imports styles from the parent … Read more

adding custom stylesheet to wp-admin

im having troubles getting my custom stylesheet work on WP-ADMIN area. plugins_url(‘style.css’, __FILE__) ); do i have to create folder in my plugins named css or do i just copy my .css to the wp-admin/css directory? i tried both it doesnt seem to work for me. and what values should be replaced to __FILE__? sorry … Read more

Best way to overide plugin CSS?

Currently, I use CSS specificity to override plugin styles. I prefer this for editing the plugin as it makes less headaches when you update. It would be nice if my style sheet loaded after the plugins, so that I only have to be as specific, not more. This would make my stylesheets much prettier. 7 … Read more