2014-02-15, 10:49 AM
For sibling selector fix open postbit_multiquote template and replace all content with
and in your showthread.css (that is used by your theme) add:
and save it.
When you quote someone in a post (using multiquote) you'll get "+" before "Quote" text that is indicating that that post is quoted.
Result:
![[Image: 18R7mp1.png]](https://camo.mybb.com/4a2ac6e0f917267b513f15edf60cb99abc91b539/687474703a2f2f692e696d6775722e636f6d2f313852376d70312e706e67)
![[Image: tF53n4y.png]](https://camo.mybb.com/41469126bc28d4e2313eb99057bd06c51c0c0eea/687474703a2f2f692e696d6775722e636f6d2f744635336e34792e706e67)
Remember to upload two transparent (1px x 1px, from postbit.zip) gif files into your theme image folder.
<a href="javascript:Thread.multiQuote({$post['pid']});" class="postbit_button" style="display: none;" id="multiquote_link_{$post['pid']}"><img src="{$theme['imglangdir']}/postbit_multiquote.gif" alt="{$lang->postbit_multiquote}" title="{$lang->postbit_multiquote}" id="multiquote_{$post['pid']}" style="display:none;" /><span></span>Quote</a>
<script type="text/javascript">
//<!--
$('multiquote_link_{$post['pid']}').style.display = '';
// -->
</script>
and in your showthread.css (that is used by your theme) add:
img[src*="postbit_multiquote.gif"] ~ span:before {
}
img[src*="postbit_multiquote_on.gif"] ~ span:before {
content:"+";
}
and save it.
When you quote someone in a post (using multiquote) you'll get "+" before "Quote" text that is indicating that that post is quoted.
Result:
Remember to upload two transparent (1px x 1px, from postbit.zip) gif files into your theme image folder.