Site logo

Archived topic

Comment buttons

3 replies · Started by Gianluca on April 3, 2018

Viewing posts 1–4 of 4

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

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;
}

It worked, thank you!

No problem!

This archived topic is closed to new replies.