If I am understand what you want, all you need to do is add into your css file the float: left; property to each link class. Here is the coding:
Code:
.fp_donate {
background: url("front_donate.png") repeat scroll center bottom transparent;
display: block;
height: 50px;
text-indent: -99999px;
width: 300px;
float: left;
}
.fp_lpwv {
background: url("front_lpwv.png") repeat scroll center bottom transparent;
display: block;
height: 50px;
text-indent: -99999px;
width: 300px;
float: left;
}
.fp_enter {
background: url("front_donate.png") repeat scroll center bottom transparent;
display: block;
height: 50px;
text-indent: -99999px;
width: 300px;
float: left;
}
Notice, that the last line of each selector has a float:left; property. Add that to your coding and see if that is the effect you are looking for.