Are you wanting to change a color on all pages site wide, or all within a space, or just on one page for one element (the answer differs). ;-)
Could use CSS style element for this. Something like:
<style type="text/css"> div#main { background: rgb(74,98,122); background: -moz-linear-gradient(0deg, rgba(74,98,122,1) 0%, rgba(136,189,188,1) 100%); background: -webkit-linear-gradient(0deg, rgba(74,98,122,1) 0%, rgba(136,189,188,1) 100%); background: linear-gradient(0deg, rgba(74,98,122,1) 0%, rgba(136,189,188,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4a627a",endColorstr="#88bdbc",GradientType=1); background-attachment: fixed; }
</style>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.