
The HTML
Simply add a class to your link.
<a href="#" class="readmore">Click Here</a>
The CSS
This is where the fun stuff happens.
First just give the button it’s visual styling. In this case I’m duplicating the grey button effect from my home page slider.
Note the box shadow style. The y-axis distance is set to 3px, which gives the box element a 3px drop shadow on the bottom.
The...