Wed, 2010-08-25 14:15
I have a link that has a class with a background image defined.
<a class="movefooter" alt="move the footer" href="" id="movefoot" ></a>
However the image is only displayed for a few pixels.
This is the class
.tm2010 #footer #opencloserow .closingfooter { background-image:url(../img/closefooter.png); background-repeat:no-repeat; display:inline; height:auto; margin-left:955px; padding:2px 20px 15px 15px; right:50px; text-align:right; }
Somebody out there that knows how to fix ?
thx
Wed, 2010-08-25 14:35
#1
you are trying to style
you are trying to style something called .closingfooter, but that class name isnt in your html. maybe something like this perhaps? give the class the with and height that supports the image's dimensions.
.tm2010 #footer #opencloserow .movefooter { background:url(../img/closefooter.png) no-repeat; display:block; height:X; width:X; margin-left:955px; padding:2px 20px 15px 15px; right:50px; text-align:right; }
