Handle for Customizr Style for use in Dependency Load Order Code
-
In a child theme, trying to override a few of the customizr styles (body bgcolor, color, etc) on the front page of the install and can’t seem to figure what the handle that is associated with the customizr (Blue) stylesheet:
add_action('wp_enqueue_scripts', 'front_page_design'); function front_page_design() { if ( is_front_page() || is_home()){ wp_register_style( 'home_page_style', get_stylesheet_directory_uri() . '/index-style.css', 'customizr-skin' ); wp_enqueue_style( 'home_page_style' ); } }
Right now I’m just using
!important
in the css.Have searched the parent code for all wp_enqueue_style calls. No luck so far.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Handle for Customizr Style for use in Dependency Load Order Code’ is closed to new replies.