View Single Post
Old 10-02-2012, 06:40 AM   PM User | #2
fireplace_tea
New Coder

 
Join Date: Sep 2012
Location: Boulder, CO
Posts: 56
Thanks: 5
Thanked 0 Times in 0 Posts
fireplace_tea is an unknown quantity at this point
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.
fireplace_tea is offline   Reply With Quote