hippieface805
Aug 2 2006, 12:52 PM
I have been looking for a code to line up the image in the back ground in the bottom left. I am so rusty on my html skills lately... If anyone has the code or a link to the code please tell me.
RawrDania
Aug 2 2006, 01:05 PM
CODE
<style type="text/css"> table, td
{background-color:transparent; border:none; border-width:0;}
body{background-image:url("YOUR BACKGROUND URL");
background-attachment: fixed;
background-position: PUT THE POSITION YOU WANT HERE;
background-repeat: no-repeat;
</style>
StanleyThePanda
Aug 2 2006, 01:06 PM
Find something like this in your code (usually at the top):
body{
background-color:ffffff;
background-image:url(http://layouts.cbimg6.com/27/imagela.gif);
background-position:bottom left;
background-attachment:fixed;
background-repeat:no-repeat;
scrollbar-face-color: f6f6f6;
scrollbar-highlight-color:f6f6f6;
scrollbar-3dlight-color:cecece;
scrollbar-shadow-color:f6f6f6;
scrollbar-darkshadow-color:cecece;
scrollbar-track-color:ffffff;
scrollbar-arrow-color:9892a8;
}
Find what is bolded and align it where you want, like "bottom left" or "bottom right" or w/e
[edit]
Someone beat me to it.