How do you put a box on your site through which people can sign up to join your mailing list?
Printable View
How do you put a box on your site through which people can sign up to join your mailing list?
There are some free and paid options available, Here`s one of them;
http://www.realbloggingtips.com/wp-c...amplesteps.jpgQuote:
First create your bounding box.
<div class="aweberbox">
</div><!--aweberbox ends-->
and then style it by adding some styles to your wordpress “style.css file. This will style the class that you applied to the <div>:
.aweberbox {
width: 250px;
height: 350px;
background: green;
}
This creates the box below:
Next step, we need to insert the another <div> to hold the Aweber code, then we need to insert the Aweber code and use css code again to position it.
<div class="aweberbox">
<div class="aweberform">
<script src="http://forms.aweber.com/form/11/586476211.js" type="text/javascript"></script>
</div><!--aweberform ends-->
</div><!--aweberbox ends-->
and the css to change the font color and position the form…
.aweberform {
color: black;
width: 200px;
margin: 0px auto;
padding: 180px 0;
}
You can get the details here
Make Money Blogging - | Making A Fancy Mailing List Signup Box