I am trying to be good and use my style sheet to do what I want, but it doesn't seem to work.
Using V8 Smart theme, I want to insert an image which will repeat in the background at the top of the page horizontally, but not vertically (it will fade from black to white).
In 'Settings' - 'Site Options' I have set the 'Background Image' as 'rez_top.jpg'
Then I have amended the top of my style sheet by adding background-repeat: repeat-x after the background image URL. The background repeats horizontally, but all does so vertically.
	I am workign on the site at:
http://www.natural-and-organic-toile...est/index.html
James
					Using V8 Smart theme, I want to insert an image which will repeat in the background at the top of the page horizontally, but not vertically (it will fade from black to white).
In 'Settings' - 'Site Options' I have set the 'Background Image' as 'rez_top.jpg'
Then I have amended the top of my style sheet by adding background-repeat: repeat-x after the background image URL. The background repeats horizontally, but all does so vertically.
Code:
	
	/* theme.css contains styles that support different sizes of theme images */
@import url("theme.css");
/* 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
	</actinic:block>
	font-family: <actinic:variable name="ACTCSSFONTFAMILY" />;
	color: <actinic:variable name="TextColor" />;
	font-size: <actinic:variable name="StandardFontSize" />;
}
http://www.natural-and-organic-toile...est/index.html
James
Comment