I was testing some things out on my installation, and changed, in /view/default/css.php the background in the following part of the file from the default color to black:
body {
text-align:left;
margin:0 auto;
padding:0;
background: #dedede;
font: 80%/1.4 "Lucida Grande", Verdana, sans-serif;
color: #333333;
(This is in the defaults section. I changed #dedede to "black.")
Now, it won't change back to the default background color. It's stuck on black. Any suggestions?
Also, I was wondering if it were possible to have a gradient like the following in place of just one background color:
background-color: #ADC3DC; background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, from(#7094D0), color-stop(0.5, #D7EAF4), to(#ADC3DC)); background: -moz-radial-gradient(50% 50%, farthest-side, #7094D0, #D7EAF4, #ADC3DC);
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- U8oL0@U8oL0

U8oL0 - 0 likes
- iionly@iionly

iionly - 0 likes
- U8oL0@U8oL0

U8oL0 - 0 likes
You must log in to post replies.Bump.
For returning to the default color you might only need to flush the site cache in the admin section after you changed the color back in the css file.
With the gradient you might need to test if it works after you made the corresponding change. You need to flush the cache again (or temporarily disable the cache while you do the testing).
Thanks!