Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #839660

    How do I change the regular and rollover dark transparent button color for all buttons that are set to dark transparent? Right now it is black – I would like the lines red and change to a dark red with a red fill on rollover for all instances of this button.

    #839786

    Hey mcraig77,

    Please try the following in Quick CSS under Enfold->General Styling:

    .avia-button.avia-color-dark:hover {
      background-color:#C83640 !important;
      color:white !important;
    }

    Best regards,
    Rikard

    #840008

    Not quite… I need to change the boarder color. I also need to make the hover have a red fill unlike the normal state which will have no fill. The button also seems to be transparent which I dont want. I tried adding this but it didnt work.

    .avia-button.avia-color-dark:hover {
      border: 2px solid ##D5202D!important;
       background-color:#c21f2a!important;
       color:white;
    }
    #840043

    Hi!

    Just to clarify, can you confirm that this is what you need:
    – in regular state, the button has red border, transparent background, and black text
    – in hover state, the button has red border, red background, and white text

    If that is what you need, please try this:

    #top #wrap_all .avia-button.avia-color-dark {
       border: 2px solid #D5202D!important;
    }
     #top #wrap_all .avia-button.avia-color-dark:hover {
       background-color:#c21f2a!important;
       color:white;
    }

    Best regards,
    Sarah

    #840067

    Ahoy,

    Looks good. One things though – the buttons are semi transparent still… How do I fix that?

    #840095

    Hi,

    You just need to add background-color to this code given to you:

    #top #wrap_all .avia-button.avia-color-dark {
    
    }

    And that should do it.

    Best regards,
    Nikko

    #840096

    Hmm… I just added that to the quick css and look the same. Do you mean I need to replace something in the previous code?

    #840258

    Hi,

    No need to replace anything, just need to add background-color with the color you want to use. It might be cached that’s why it’s not changing, if it doesn’t change, please give us temporary admin access, so we can try to check it.

    Best regards,
    Nikko

    #840578

    Hmm.. yeah the button is still transparent. Below are credentials.

    Please Advise

    #841333

    Hi,

    This is done. I have replaced this css code:

     #top #wrap_all .avia-button.avia-color-dark:hover {
       background-color:#D5202D!important;
       color:white;
    }

    with this one:

     #top #wrap_all .avia-button.avia-color-dark:hover {
       background-color:#D5202D!important;
       color:white;
       opacity: 1 !important;
    }

    Let us know if you need more assistance :)

    Best regards,
    Nikko

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.