Hey Russ,

In this example i am using Bolt version 2.3.2.
1077-344-max.png
I have added "border-bottom: 5px solid #1d42d9;" to the Navigationbar and now i have this design customization in both design variants.

Is it possible to create design customizations only for the light design without affecting the dark design?

Greetings
 

Attachments

  • 1081-442-max.png
    1081-442-max.png
    45.9 KB · Views: 3
Yep! Right below that line of the border-bottom in the extra box, place this:

Code:
        .m-colorScheme(light,
        {
            border-bottom-color: #CCC;
    }
    );

You can use whatever valid CSS here and it'll only load for the light version.

Alternatively, you can use this for dark only:

Code:
        .m-colorScheme(dark,
        {
          border-bottom-color: #CCC; 
    }
    );
 

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