MyBB Community Forums

Full Version: Rep button not showing up in messages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Greetings,
The Add/Give Rep button isn't showing up on threads, even though it is activated and there is "{$post['button_rep']}" in the postbit template.

No error in browser's console.

Any idea ?
Thanks
To correct this problem:
* Go and edit the global.css (Editing global.css)
* Edit Stylesheet: Advanced Mode
* Add at the end of everything
/** Modal Start **/

.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.75);
    text-align: center;
}

.blocker:before{
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
}

.blocker.behind {
    background-color: transparent;
}

.modal {
    width: 400px;
    text-align: left;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
}

.modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background: url(images/close.png) no-repeat 0 0;
}

.modal-spinner {
    display: none;
    width: 64px;
    height: 64px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -32px;
    margin-top: -32px;
    background: url(images/spinner_big.gif) no-repeat center center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

/** Modal End **/ 
Hey Livewire,
Thank you for your reply.

I added your CSS as written, but the button still isn't showing up.
Perhaps it might be linked to the fact the theme is being made on a brand clean CSS template ?
PM me with your forum url and test admin account.

EDIT:

Just checked, your whole theme is bugged or are you working on it? If yes I suggest you finish it completely after that you can figure why it's not working, also tried to go on your admin panel but everything is different language lol.

Sorry.
I was guessing it could be the reason, but perhaps you're right. The theme is being made from 0, which is why some options/features may be missing, didn't think about that.

Thank you for your time. I will update this thread when nearly everything will be done if itsn't solved yet. No need to be sorry though, it's our (my partner and me)'s fault.
Just PM me when you've completed it then I can help you further.
Sounds good, will do. Thanks for your help.