Hi

I noticed that in your CSS, bootstrap_w.css on line 4798, you have 
specified a width and height for the .carousel-inner class.

.carousel-inner {
position: relative;
width: 580px;
height: 160px;
border: 0;
overflow: hidden;
}

This is causing your images to resize smaller.
If you remove the width and height, it works, but then I noticed that you 
have the issue of the slides being higher up and then they drop down, on 
your HTML file, you have the CSS:

.carousel-inner {
min-height: 500px;
padding-top: 20px;
}

Remove the min-height and make padding-top, margin-top, and the issue goes 
away. Hope this helps.

-- 
You received this message because you are subscribed to the Google Groups 
"twitter-bootstrap" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to