Page 1 of 1

Changing background color or adding background image for default 3.0 theme

Posted: Sun Oct 28, 2018 3:35 pm
by swingman
Hey everyone,

How do I change the background color or add a background image for 3.0 default theme?

I've tried looking through the stylesheet but cannot find the correct line to edit.

Thanks in advance.

Re: Changing background color or adding background image for default 3.0 theme

Posted: Mon Nov 05, 2018 12:27 am
by oc-extensions
Hi,

File: catalog/view/theme/default/stylesheet/stylesheet.css

find rule

Code: Select all

body {
and add

Code: Select all

body {
background-color: #000;
background-image: url('path/to/background/image/file.png');
background-repeat: no-repeat; // or how you want
}
#000 = black color in bg; change it with color you want

Good luck!

Re: Changing background color or adding background image for default 3.0 theme

Posted: Mon Nov 05, 2018 2:41 pm
by ostechnologies
Either you can use the method given by OC-extensions or if you want to make changes to any particular template then navigate to Admin/Design/Theme Editor, here select your theme and makes changes to the template file.