Learning and loving bootstrap. But was wondering

how do you change the timing on the slider? It goes just a bit too fast.
Anyone knows?
D

It will be in the slideshow settings (JS?). Please give us a link to an example.

You can use the interval option for that


$('.carousel').carousel({interval: 10000});

(number of seconds you want each slide to show * 1000)

hello folks it is at my test site. http://www.thebigmeow.us
had to start from scratch. And wish I had not displaced my notes.
The tag
<img src=“<?php bloginfo(‘template_directory’); ?>…/coreImg/socIconGPlus.png”/>

for example is not bringing up any of the images…
and altough I am pretty sure the js is called correctly in the functions.php
it doesn’t seem to be working. and clicking on the accordion or slider just pops the user to the footer.

never mind! got the images to show up.
But any advice getting the jquery/js to work for the accordion & slider please?
thx
D

Where is the js for it?

It’s not here where you are pointing to it.

Also make sure that you don’t have any comments above the doctype or you will trip quirks mode in IE.

Paul thank you for taking the time to look at this.
I did load the js in the appropriate folder, in there I have booth bootstrap.js & bootstrap.min.js
am I pointing at it incorrectly?

am using this in the function.php


function load_styles_and_scripts(){

	//load styles
	wp_enqueue_style(
			'bootstrap-styles',
			get_template_directory_uri().'/css/bootstrap.min.css'
		);
	wp_enqueue_style(
			'main-styles',
			get_template_directory_uri().'/style.css'
		);

	//load scripts
	wp_enqueue_script(
			'jquery',
			'http://code.jquery.com/jquery.min.js'
		);

	wp_enqueue_script(
			'bootstrap-scripts',
			get_template_directory_uri().'/js/bootstrap.min.js'
		);

}

add_action('wp_enqueue_scripts', 'load_styles_and_scripts');

Hi, I don’t know anything abut bootstrap but don’t you need to initialise the carousel?


    $('.carousel').carousel({
    interval: 2000
    })