Buttons module

Use the following HTML to create a regular button:

			<div class="buttonHolder">
				<a href="#" class="button">
					<b>&nbsp;</b>
					<span>Button text</span>
					<i>&nbsp;</i>
				</a>
			</div>
		

This will result in a button:

  Button text  


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>&nbsp;</b>
					<span>Button text</span>
					<i>&nbsp;</i>
				</a>
				<a href="#" class="button">
					<b>&nbsp;</b>
					<span>Button text</span>
					<i>&nbsp;</i>
				</a>
			</div>
		

This will add some spacing between the two buttons. Tight.

  Button text     Button text