XF 1.5 Spoiler Button

Ben44

Active member
Hi all,
Is there anyway to hide the Spoiler Button and just have a Spoiler Link?


Thanks in advance for any replys.

Ben
 
While this does in fact allow me to take away the buttion it does it for all buttons. Anyone know a bit of code I can add to something like the EXTRA.css that will only hide the button for the Spoiler?

Thanks again
 
This will work, you can adjust the font-size if need be.

Code:
.bbCodeSpoilerButton {
    font-weight: bold;
    font-size: 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.bbCodeSpoilerButton:hover {
    background: transparent;
}
 
Top Bottom