Table of Contents
- Introduction
- Conventions
- Documentation by module
Use the following HTML to create a regular button:
<div class="buttonHolder"> <a href="#" class="button"> <b> </b> <span>Button text</span> <i> </i> </a> </div>
This will result in a button:
Now sometimes you want to have 2 buttons next to each other. Simply add another <a> inside the buttonHolder-div.
<div class="buttonHolder"> <a href="#" class="button"> <b> </b> <span>Button text</span> <i> </i> </a> <a href="#" class="button"> <b> </b> <span>Button text</span> <i> </i> </a> </div>
This will add some spacing between the two buttons. Tight.