MyBB Community Forums

Full Version: Post bit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well I've never added this spoiler. I guess it came with the theme

Here's what it looks like

[Image: GcwvfMLnnh.png]

I want to use the spoiler plugin but every-time I activate it nothing happens. It's just that same ugly yellow one. Any help would do. Thanks

Plugin i'm using - http://mods.mybb.com/view/spoiler-bbcode

Author: Sephiroth
Inspect the css representing your spoiler.
That's the weird thing. No where to be found in it.
The plugin you have indicated states that you have to include this css in global.css. I've not gone in depth though. Just include the following in your current theme's global.css and see what happens:

.spoiler_header {
    background: #FFF;
    border: 1px solid #CCC;
    padding: 4px;
    margin: 4px 0 0 0;
    color: #000;
}

.spoiler_body {
    background: FFF;
    padding: 4px;
    border: 1px solid #CCC;
    border-top: 0;
    color: #000;
    margin: 0 0 4px 0;
}
That did nothing at all Sad
(2012-11-03, 07:20 PM)effone Wrote: [ -> ]The plugin you have indicated states that you have to include this css in global.css. I've not gone in depth though. Just include the following in your current theme's global.css and see what happens:

.spoiler_header {
    background: #FFF;
    border: 1px solid #CCC;
    padding: 4px;
    margin: 4px 0 0 0;
    color: #000;
}

.spoiler_body {
    background: FFF;
    padding: 4px;
    border: 1px solid #CCC;
    border-top: 0;
    color: #000;
    margin: 0 0 4px 0;
}

Try adding this to your showthread.css. I've had to do this before.
That didn't work either.