Child themes CSS priority problems without using !important
Try enqueuing your child theme’s CSS like so: // Queue parent style followed by child/customized style add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’, PHP_INT_MAX); function theme_enqueue_styles() { wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ ); wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/styles/child-style.css’, array( ‘parent-style’ ) ); } Notice a few things: 1) PHP_INT_MAX as priority so that this runs last 2) get_stylesheet_directory_uri() vs. … Read more