Reply To: Creating ghost buttons

Home Forums Support Creating ghost buttons Reply To: Creating ghost buttons

Home Forums Support Creating ghost buttons Reply To: Creating ghost buttons

#192517
Tom
Lead Developer
Lead Developer

Pretty easy with some CSS and HTML.

Your button: Ghost button

Your CSS:

.button.ghost {
    background-color: transparent;
    border: 1px solid #FFF;
    color: #222222;
}

.button.ghost:hover {
    background-color: #FFFFFF;
}

Something like that should work 🙂