• Hi there,

    First of all, thanks so much for the awesome plugin, really appreciate it. We would be very much appreciated if you can advise how to change the button colour.

    Thanks so much.

    Best regards,Suan

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Deepen

    (@j_3rk)

    Hi,
    You can customize button color using css. You can use below code to change the values.

    .ina-button {
      background-color: red;
      color: white;
    }

    This will change overall color of the buttons.

    If you want to change for individual buttons then following code might be helpful

    //for continue button
    .ina-modal-inside .ina-modal-actions .ina-button.ina-stay-logged-in
    
    //for close without reloading
    .ina-modal-inside .ina-modal-actions .ina-button.ina-close-without-reloading

    Thread Starter hooiling

    (@hooiling)

    Hi there,

    Thanks so much for the code. We have put this code at Additional CSS, however nothing happened, it still the same with blue background, can you help?

    .ina-button {
      background-color: red;
      color: white;
    }

    Thanks and have a great day ??

    Best regards, Suan

    Plugin Author Deepen

    (@j_3rk)

    Hi,

    If you want to change color of “Continue without reloading” button then use below css

    .ina-modal-inside .ina-modal-actions .ina-close-without-reloading {
       background: red !important;
    }

    If you want to change continue button then use below

    .button.ina-button.ina-stay-logged-in {
        background: red !important;
    } 

    For all button style try adding !important

    .ina-button {
      background-color: red !important;
      color: white !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to change timeout notification button colour from existing blue colour?’ is closed to new replies.