The following code is from my actinic stylesheet.
the background image has a length of 1000px. How do i make it stretch till the bottom of a page? what code should i use?
ive tried: background-size= 100%; and height: 100%; width: 100%; , neither of which worked.
Thanks in advance for the help.
Code:
/* begin general styles for all themes */ html,body { margin: 0px; padding: 0px; <actinic:block if="%3cactinic%3avariable%20name%3d%22IsBackgroundColor%22%20%2f%3e%20%3d%3d%20True"> background-color:<actinic:variable name="BGColor"/>; </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22IsBackgroundColor%22%20%2f%3e%20%3d%3d%20False"> background-image: url("<actinic:variable name="BackgroundImageFileName" />"); background-repeat: repeat-x; height: 100%; width: 100%; background-position: center </actinic:block> font-family: <actinic:variable name="ACTCSSFONTFAMILY" />; color: <actinic:variable name="TextColor" />; font-size: <actinic:variable name="StandardFontSize" />; }
ive tried: background-size= 100%; and height: 100%; width: 100%; , neither of which worked.
Thanks in advance for the help.
Comment