Add this code in theme functions.php file for add custom stylesheet in genesis theme.
1 2 3 4 |
add_action( 'wp_enqueue_scripts', 'custom_add_custom_stylesheet' ); function custom_add_custom_stylesheet() { wp_enqueue_style( 'custom-stylesheet', CHILD_URL . '/custom.css', array(), PARENT_THEME_VERSION ); } |
Now you create custom.css file and upload in genesis child theme directory. Like as: http://yoursite.com/wp-content/themes/genesis-child-theme/custom.css .