Ben44 Active member Oct 6, 2016 #1 Hi all, Is there anyway to hide the Spoiler Button and just have a Spoiler Link? Thanks in advance for any replys. Ben
Hi all, Is there anyway to hide the Spoiler Button and just have a Spoiler Link? Thanks in advance for any replys. Ben
Ben44 Active member Oct 6, 2016 #2 To show what I mean, I would like the bottom text as a Spoiler and not the box around it. Upvote 0 Downvote
P Paul B XenForo moderator Staff member Oct 6, 2016 #3 You could override the CSS to remove the button styling. Upvote 0 Downvote
Ben44 Active member Oct 8, 2016 #4 Brogan said: You could override the CSS to remove the button styling. Click to expand... Can you explain how to do this please Brogan? OK, I found the css to edit. Thanks for pointing me in the right direction. Last edited: Oct 8, 2016 Upvote 0 Downvote
Brogan said: You could override the CSS to remove the button styling. Click to expand... Can you explain how to do this please Brogan? OK, I found the css to edit. Thanks for pointing me in the right direction.
Ben44 Active member Oct 9, 2016 #5 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 Upvote 0 Downvote
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
Steve F Well-known member Oct 9, 2016 #6 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; } Upvote 0 Downvote
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; }