S sebo1992 Chevereto Member Jun 24, 2011 #1 Hey, Is there a way to change the color of the background? I am not the css pro, so I am just asking here. Thanks, Sebo
Hey, Is there a way to change the color of the background? I am not the css pro, so I am just asking here. Thanks, Sebo
Danny.Domb 👽 Chevereto Freak Jun 24, 2011 #2 open : content/themes/yourTheme/style.css find : CSS: body { background: url(./theme-img/bliss.png) no-repeat center top; color: #333; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 120%; } replace with : (where 000000 is your color, you can google rbg color for more information or picking the right color you desire) CSS: body { background: url(./theme-img/bliss.png) no-repeat center top; background-color: #000000; color: #333; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 120%; } Except that the blue to white degrade is an image, so you need to edit it with something like photoshop.
open : content/themes/yourTheme/style.css find : CSS: body { background: url(./theme-img/bliss.png) no-repeat center top; color: #333; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 120%; } replace with : (where 000000 is your color, you can google rbg color for more information or picking the right color you desire) CSS: body { background: url(./theme-img/bliss.png) no-repeat center top; background-color: #000000; color: #333; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 120%; } Except that the blue to white degrade is an image, so you need to edit it with something like photoshop.
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Jul 17, 2011 #4 If you want to change the gradient you must edit this on the CSS: CSS: html { background: url(./theme-img/background.png) repeat-x; }
If you want to change the gradient you must edit this on the CSS: CSS: html { background: url(./theme-img/background.png) repeat-x; }