luciana26
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Gallery] Bootstrap drop-down toogle wouldn’t workWhen the plugin is activated it also changes the color of the navigation bar/header from white to silver.
Forum: Plugins
In reply to: [Image Gallery] Bootstrap drop-down toogle wouldn’t workThank you for the quick answer and sorry. Now the plugin is activated.
http://kaizen.thewhiteroomdesign.com/proyectos-de-viviendas/This is how the enqueued styles and scripts looks in my functions.php :
/**
* Enqueue scripts and styles.
*/
function luciana_araya_scripts() {
wp_enqueue_script( ‘luciana-araya-navigation’, get_template_directory_uri() . ‘/js/navigation.js’, array(), ‘20151215’, true );wp_enqueue_script( ‘luciana-araya-bootstap-min-js’, get_template_directory_uri() . ‘/js/bootstrap.min.js’, array(‘jquery’), ‘null’, true );
wp_enqueue_style( ‘luciana-araya-bootstrap-min’, get_template_directory_uri() . ‘/css/bootstrap.min.css’, array(), null, ‘all’ );
wp_enqueue_style( ‘luciana-araya-font-awesome’, get_template_directory_uri() . ‘/css/font-awesome.min.css’, array(), null, ‘all’ );
wp_enqueue_style( ‘luciana-araya-style’, get_stylesheet_uri() );
wp_enqueue_style(‘lucina-araya-google-font-open-sans’,’href=”https://fonts.googleapis.com/css?family=Raleway:300|Roboto”‘);
wp_enqueue_script( ‘luciana-araya-skip-link-focus-fix’, get_template_directory_uri() . ‘/js/-skip-link-focus-fix.js’, array(), ‘20151215’, true );
if ( is_singular() && comments_open() && get_option( ‘thread_comments’ ) ) {
wp_enqueue_script( ‘comment-reply’ );
}
}
add_action( ‘wp_enqueue_scripts’, ‘luciana_araya_scripts’ );- This reply was modified 9 years, 1 month ago by luciana26.