MyBB Community Forums

Full Version: Fix multi-quote button?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
ok, so you are getting there and it is no longer green. Good job.

If you want to make it a bit nicer, take the button class out of the html for the multiquote and use this:

<span class="multiquote" id="multiquote_{$post['pid']}" title="{$lang->postbit_quote}">
     <a href="javascript:Thread.multiQuote({$post['pid']});" style="display: none;" id="multiquote_link_{$post['pid']}"><span><i class="fa fa-plus"></i></span></a>
</span>
<script type="text/javascript">
     $('multiquote_link_{$post['pid']}').style.display = '';
</script>


This css

.multiquote a {
color: white;
padding: 4px 8px;
background: #0099ff;
}
.multiquote_on a {
color: white;
padding: 4px 8px
background: black;
}
Pages: 1 2 3