Quote:
Originally Posted by BellyBelly
I installed it, it didn't break anything but I only have text 'Sticky Posts' and 'Normal Posts' in a line - no colour bar going across. I had this in previous versions of this mod & VB.
|
Same here....had a previous version that I had turned off for the vB3 to vB4 upgrade, had to go enable the plug in again (after I uploaded the new xml).
I modded the plugin and placed a 15px high and 100% long piece of my background color in the bar that said "normal threads" to get the "colored bar/spacer" back.
Here's what I did....pretty easy. Sorry if I am not supposed to mod these and post them up. If this is the case, please PM me and I will remove. Just trying to be helpful. 8)
Find this:
PHP Code:
<template name="FORUMDISPLAY_Separate2" templatetype="template" date="1260698661" username="Admin" version="4.0.1">
<![CDATA[
<li class="threadbit" id="cat1">
<div class="icon0 nonsticky">
<div class="inner">
<p><b> $vbphrase[delim_sticky] </b></p>
</div>
Changed it to add a background image (mine was a solid color) and sized it to accomplish the spacing.
Modded version:
PHP Code:
<template name="FORUMDISPLAY_Separate" templatetype="template" date="1260698648" username="Admin" version="4.0.1">
<![CDATA[
<li class="threadbit" id="cat1">
<div class="icon0 nonsticky">
<div class="inner">
<p><img src="http://www.mywebsite.com/images/newback.gif" height="15px" width="100%"></p>
</div>