Change site background colour

Change site background colour

by Phuong Hoang -
Number of replies: 4

Hi everyone,

I'd like to change site background colour of MORE theme but I fail. In MORE theme I set #dedede in Background colour box but it only changed a bit above the page title. I also used css


body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#dedede;} in Custom CSS, however, the result is the same.

I'm only able to change; Main content background colour and Secondary background colour.


To be clear, I'd like to change site background colour from #fff to #dedede. Can some help me?

Many thanks in advance,

P/S: I'm using moodle 2.8.7+ theme More.

Average of ratings: -
In reply to Phuong Hoang

Re: Change site background colour

by Phuong Hoang -

I got it!smile Thanks anyway

In reply to Phuong Hoang

Ynt: Re: Change site background colour

by Umut Deniz -

How? Please tell me bro.

In reply to Umut Deniz

Re: Ynt: Re: Change site background colour

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

It is because there is a background image in the More theme. If you want a background colour then you need to block the image first using css.

body {
background-image: none;
}

Hope that helps?

Mary