Announcement

Collapse
No announcement yet.

page background x-repeat

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    page background x-repeat

    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.

    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" />;
    }
    I am workign on the site at:
    http://www.natural-and-organic-toile...est/index.html

    James
    www.butterflies-healthcare.co.uk
    www.viteyes.co.uk - vitamins for macular degeneration
    www.natorigin.co.uk - natural/organic cosmetics and skin care for sensitive skin & eyes
    www.butterflies-eyecare.co.uk - eye drops, vitamins and other eye care products
    www.prescription-swimming-goggles.co.uk - optical and prescription swimming goggles

    #2
    Close the style like every other style in there then.

    Comment


      #3
      ah that would be the ; then.

      Thanks

      James
      www.butterflies-healthcare.co.uk
      www.viteyes.co.uk - vitamins for macular degeneration
      www.natorigin.co.uk - natural/organic cosmetics and skin care for sensitive skin & eyes
      www.butterflies-eyecare.co.uk - eye drops, vitamins and other eye care products
      www.prescription-swimming-goggles.co.uk - optical and prescription swimming goggles

      Comment

      Working...
      X