What will the “special file code” be? If I would like to link the button to a page?
something like:
<div class="special-button">
<a href="<?php bloginfo('url'); ?>/pagename/" title="freebie">SPECIAL FILE<span><br/>freebie of the month</span></a>
</div>
with styles:
.special-button{
display: block;
position: absolute;
z-index: 50;
top: 160px;
right: 100px;
height: 40px;
width: 120px;
padding:10px;
background: #555;
}
.special-button a {
color:#ddd;
font-size: 17px;
font-weight: bold;
}
.special-button a span {
font-size: 12px;
font-weight: normal;
font-style: italic;
}
—-
or turn the button into a graphic (‘special-button.png’), and save it in the /images folder of your theme:
<div class="special-button">
<a href="<?php bloginfo('url'); ?>/pagename/" title="freebie"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/special-button.png" alt="freebie" /></a>
</div>
(untested)