• Hi,

    If you want to improve (a little) this (great) theme you can change the seanlite_includes function (in core/main.php) to put the seanlite css UNDER the bootstrap CSS.

    Just change

    wp_enqueue_style( 'seanlite-style', get_stylesheet_uri(), array() );
    
    seanlite_enqueue_style('/includes/css');

    by

    seanlite_enqueue_style('/includes/css');
    
    wp_enqueue_style( 'seanlite-style', get_stylesheet_uri(), array() );

    It allows you to use a few CSS on bootstrap elements without being forced to use !important; on each lines.

  • The topic ‘A few changes’ is closed to new replies.