Skip to main content
Participating Frequently
February 7, 2017
Answered

cant change site backgroundcolour (but can insert backgroundimage..??)

  • February 7, 2017
  • 1 reply
  • 380 views

as the title

i cant change the colour of my site (none of them) ( i can change it but nothing happens), but giving the site a backgroundimage is no problem..

i dont get it???

please help

    This topic has been closed for replies.
    Correct answer BenPleysier

    If you take the second image Erscheinungsbild (CSS) and change the value of Hintergrundfarbe and click on Anwenden, then the background colour should change accordingly. If not, go into code view and in the first 15 lines of code you should be able to find code similar to

    body {

      background-color: #D70609;

    }

    change that to read (i.e. add !important)

    body {

      background-color: #D70609 !important;

    }

    Viel Glück

    1 reply

    BenPleysier
    Community Expert
    Community Expert
    February 7, 2017

    There are two different ways to set a background colour, namely

    background: green;

    and

    background-color: green;

    Depending on which one was set prior to you changing the colour will determine which one to use for the override.

    If in doubt, use background: green !important;

    Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
    akamookeeAuthor
    Participating Frequently
    February 7, 2017

    hi

    thanks..

    i guess u mean once in html (background) and once in css (backgroundcolour)

    i did both now, and applied, still nothing and a white background on my site

    hmmm??? hmm

    BenPleysier
    Community Expert
    BenPleysierCommunity ExpertCorrect answer
    Community Expert
    February 7, 2017

    If you take the second image Erscheinungsbild (CSS) and change the value of Hintergrundfarbe and click on Anwenden, then the background colour should change accordingly. If not, go into code view and in the first 15 lines of code you should be able to find code similar to

    body {

      background-color: #D70609;

    }

    change that to read (i.e. add !important)

    body {

      background-color: #D70609 !important;

    }

    Viel Glück

    Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!