• Hi, i’m surprised that i can’t find any explainations related to CSS-styles. I just would like to change the color of the buttons, in particular the “Nein”-button (“No”) should get a specific color. I’m no developer, so I’d prefer to type some css styles directly in the css-file of my child theme, or, is there an easier way? Thanks for any useful information.
    Regards, Harry

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello @harryman7,

    Please find two different solutions for your issue.

    Solution:1
    Add below CSS in your custom style editor.

    .cn-button.bootstrap:nth-child(3) {
      background-color: red !important; /* your desired color */
      background-image: none;
    }

    Solution:2

    Add new class on anchor link for “nein-button” and set the desired style using that class as below.

    .class-name {
      background-color: red !important; /* your desired color */
      background-image: none;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Changing Button Colors’ is closed to new replies.