[Resolved] Comment buttons

Home Forums Support [Resolved] Comment buttons

Home Forums Support Comment buttons

  • This topic has 3 replies, 2 voices, and was last updated 6 years ago by Leo.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #540355
    Gian

    Hi, on my website I added the following code:

    .button.ghost,
    .button.ghost:visited {
    background: transparent;
    border: 2px solid #35b729;
    border-radius: 5px;
    }

    .button.ghost:hover,
    .button.ghost:active {
    background: #35b729;
    color: #ffffff;
    border: 2px solid #35b729;
    }

    to style buttons, but unfortunately is not working for comment buttons.

    How to make that buttons for comments have the same style?

    Thank you

    #540447
    Leo
    Staff
    Customer Support

    Hi there,

    Give this a shot:

    .button.ghost,
    .button.ghost:visited,
    .comments-area input[type=submit] {
        background: transparent;
        border: 2px solid #35b729;
        border-radius: 5px;
    }
    
    .button.ghost:hover,
    .button.ghost:active,
    .comments-area input[type="submit"]:hover {
        background: #35b729;
        color: #ffffff;
        border: 2px solid #35b729;
    }
    #540569
    Gian

    It worked, thank you!

    #541053
    Leo
    Staff
    Customer Support

    No problem!

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