Difference between revisions of "Modify Site Background Image or Colour"

From UnionCloud Support
Jump to: navigation, search
Line 3: Line 3:
 
To change the speed of the scroll simply change the 'auto:X,' line and replace the X with the number of seconds you want to delay the scroll, the example below uses 2 seconds.
 
To change the speed of the scroll simply change the 'auto:X,' line and replace the X with the number of seconds you want to delay the scroll, the example below uses 2 seconds.
  
 
+
<code>
 +
<nowiki>
  
 
<syntaxhighlight lang="javascript" line='line'>
 
<syntaxhighlight lang="javascript" line='line'>
Line 13: Line 14:
 
});
 
});
 
<syntaxhighlight>
 
<syntaxhighlight>
 +
</code>
 +
</nowiki>

Revision as of 14:37, 29 March 2017

If you want to change the UnionCloud Background Image, or Background Colour, and you have access to Global CSS you can do either of these things using the following lines of code]]

To change the speed of the scroll simply change the 'auto:X,' line and replace the X with the number of seconds you want to delay the scroll, the example below uses 2 seconds.

<syntaxhighlight lang="javascript" line='line'> $('.auto-stripe ul').jcarousel({ scroll:1, wrap: 'last', auto:2, itemFallbackDimension: 300 }); <syntaxhighlight> </code>