Ability to center image within div
naptown - September 25, 2008 - 01:43
| Project: | Fading Slideshow |
| Version: | 5.x-1.1 |
| Component: | User interface |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
First off, thanks for the great module. It works great and the UI is simple.
I would greatly appreciate the ability to vertically center the image within the div it is presented. I attempted the change, but was unsuccessful.
Here is the styling from dynamic drive: http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm
.centerdiv{ /*IE method of centering a relative div*/
text-align: center;
}
.centerdiv>div{ /*Proper way to center a relative div*/
margin: 0 auto;
}
CODE OF STEP 2 HERE

#1
Here is the code again, the first post, drupal attempted to render it.
<style type="text/css">
.centerdiv{ /*IE method of centering a relative div*/
text-align: center;
}
.centerdiv>div{ /*Proper way to center a relative div*/
margin: 0 auto;
}
</style>
<body>
<div class="centerdiv">
CODE OF STEP 2 HERE
</div>
</body>