Quote:
Originally Posted by iA1
In SHOWTHREAD template, look for the following lines:
Code:
<vb:if condition="$show['threadrating']">
<li class="popupmenu" id="threadrating">
<h6><a class="popupctrl" href="javascript://">{vb:rawphrase rate_this_thread}</a></h6>
<div class="popupbody popuphover">
and replace with:
Code:
<vb:if condition="$show['threadrating']">
<li class="popupmenu" id="threadrating">
<h6><a class="popupctrl" href="javascript://">{vb:rawphrase rate_this_thread}</a></h6>
<ul class="popupbody popuphover">
Note that the only change is in the last line here from div to ul.
The closing of this div should also be changed. Look for:
Code:
<input type="hidden" name="t" value="{vb:raw threadid}" />
<input type="hidden" name="pp" value="{vb:raw perpage}" />
<input type="hidden" name="page" value="{vb:raw pagenumber}" />
</form>
</div>
and replace with:
Code:
<input type="hidden" name="t" value="{vb:raw threadid}" />
<input type="hidden" name="pp" value="{vb:raw perpage}" />
<input type="hidden" name="page" value="{vb:raw pagenumber}" />
</form>
</ul>
If anyone has done any other updates to this mod / style, post them here so that we can add them to the next release.
|
Thank You!!!
can't believe that's all it was!!