Add a WCA banner to your blog.

In WordPress

Paste this code into the CSS of your blog or site

.badgecorner {
position: absolute;
right: 0;
top: 0;
margin: 0;
padding: 0;
border: none;
float: none; }
.badgecorner a img {
background-color: transparent;
color: white;
border: none;
text-decoration: none; }


and then include this in a “text” sidebar widget.

<div class=”badgecorner”><a href=”http://access2water.wordpress.com”><img src=”http://www.countrywideweekends.btinternet.co.uk/notacrime.gif” alt=”Kayaking is Not a Crime” Title=”Kayaking is not a crime” /></a></div>

In HTML

//this goes on your head section
<style type=”text/css”>
.badgecorner {
position: absolute;
right: 0;
top: 0;
margin: 0;
padding: 0;
border: none;
float: none; }
.badgecorner a img {
background-color: transparent;
color: white;
border: none;
text-decoration: none; }
</style>

//from here to below, paste the following code somewhere on your body

<div class=”badgecorner”><a href=”access2water.wordpress.com”><img src=”http://www.countrywideweekends.btinternet.co.uk/notacrime.gif” alt=”Kayaking is not a crime” /></a></div>