skip to Main Content

I want to change the brown colour that is the background but I cant seem to change it, no matter how many colors i change in the css file.. i have changed all the places where colour is entered, backgroundcolor, but nothing changes.. please help!

2

Answers


  1. Try it by adding !important i.e
    background-color: red !important;

    Login or Signup to reply.
  2. since you have not provided the css code, we cannot help you precisely.

    Try adding the following code to the CSS file:

    body, #root {
      background-color: #964b00;
    }

    <body> tag defines the document’s body.

    :root selector matches the document’s root element.

    background-color property sets the background color of an element.
    In this case it sets the background of body tag and :root selector to #964b00 (brown). That should result in the background being brown.

    If it doesn’t help, please provide the CSS code so we can investigate the issue further…

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search