Hello!

I have a problem using Twitter Bootstrap's carousel in the current version 
2.3.2: my images are not resized proportionally, even including 

a) the original width & height 

or 

b) width=100% & height=auto

    <!-- Carousel
    ================================================== -->
    <div id="myCarousel" class="carousel slide">
      <div class="carousel-inner">
        
        <div class="item active">
          <img *width=1550px; height=550px;* src="./image1.png" alt="">
          <div class="container">
            <div class="carousel-caption">
              <h1>Slide 1</h1>
              <p class="lead">Cras justo odio, dapibus ac facilisis in, 
egestas eget quam. </p>
              <a class="btn btn-large btn-primary" href="#s1">more 
&raquo;</a>
            </div>
          </div>
        </div>
                 
        <div class="item">
          <img *width=100%; height=auto;* src="./image2.png" alt="">
          <div class="container">
            <div class="carousel-caption">
              <h1>Slide 2</h1>
              <p class="lead">Cras justo odio, dapibus ac facilisis in, 
egestas eget quam. </p>
        <a class="btn btn-large btn-primary" href="#s1">Mehr &raquo;</a>   
            
            </div>
          </div>
        </div>
      </div>
     
      <a class="left carousel-control" href="#myCarousel" 
data-slide="prev">&lsaquo;</a>
      <a class="right carousel-control" href="#myCarousel" 
data-slide="next">&rsaquo;</a>
    </div><!-- /.carousel -->
    
What do I do wrong?

Thank you!


Kind regards,
Vlad Ghitulescu

-- 
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