Set this in your HTML
For every img
element in your carousel, you can set the width
property to 100%
like this (although you shouldn't need to if the natural resolution is larger than the control):
<!-- language: lang-html -->
<img src="http://i.imgur.com/OEdBxVD.jpg" width='100%'>
- normally, this image would be too small to expand fully, but 100% scales it up.
- make sure you don't have the
width
or height
set to any pixel sizes
Since the image is going to go full screen, you should try to get your hands on a resolution that will naturally try to take up the full width available. When the browser has to scale the image up, it will cause artifacts.