Reputation: 9080
I have the following fiddle which includes a snippet of the HTML I'm working with:
Basically this is part of a wizard screen that I'm trying to incorporate. I'm using the stepy wizard plugin. But my question is about the buttons. I would like to have the buttons display in the same location for every screen. I made the height of the fieldset.step = 475px.
I want my buttons to be closer to the bottom. How can I do this?
Upvotes: 1
Views: 179
Reputation: 18979
Use absolute positioning
Updated fiddle: http://jsfiddle.net/thomas_peklak/UQGs6/1/
Additional css:
fieldset.step {position:relative}
#default-buttons-0 {position:absolute;bottom:15px;right:15px}
Upvotes: 1