Seeker-Smith

Customer
Hi,
Somehow along the way I have broken the dark mode of our site. I had a saved style but it didn't fix the issue.

Any help is appreciated.
Peter
 

Attachments

  • IMG_2051.PNG
    IMG_2051.PNG
    316.6 KB · Views: 4
You added this somewhere:
Code:
.block-body {
    background: #f5f6f7;
}

You need to be careful adding hard-coded values like that. Block-body is also just about EVERYWHERE on the site.

If the intention was to change a specific area, I'd add more CSS selectors. YOu can also use this to adjust it for light/dark mode:

Code:
.block-body {
    background: #f5f6f7;
        .m-colorScheme(dark,
        {
            background: #000;
    }
    );
}

Change #000 to whatever background color you'd want just for the dark style.
 
You added this somewhere:
Code:
.block-body {
    background: #f5f6f7;
}

You need to be careful adding hard-coded values like that. Block-body is also just about EVERYWHERE on the site.

If the intention was to change a specific area, I'd add more CSS selectors. YOu can also use this to adjust it for light/dark mode:

Code:
.block-body {
    background: #f5f6f7;
        .m-colorScheme(dark,
        {
            background: #000;
    }
    );
}

Change #000 to whatever background color you'd want just for the dark style.
Hi Russ,
Thanks, it was in a add-on.
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back