Thanks for the reply.
It is my own mod, and I've never published it anywhere previously, it's only in use on one board (one I manage).
Product is attached to this message.
I do have a few template edits, but I make them manually, rather than auto insertion, essentially they perform a conditional check on wether a vb option has been enabled or not. Here is the info file I created for myself for the "showthread" template edit (I have them for; showthread, forumhome_foumbit_level2_post, forumhome_foumbit_level1_post, and forumdisplay)
Code:
Positioning of the SHOWTHREAD template code:
Edit the SHOWTHREAD template and look for the following:
<if condition="$show['inlinemod']">
$spacer_close
<form action="inlinemod.php?threadid=$threadinfo[threadid]&p=$postid" method="post" id="inlinemodform">
$spacer_open
</if>
<a name="poststop" id="poststop"></a>
Place the template code below this block of code
Template Code:
<!-- START - mrwrb -->
<if condition="$foruminfo[mrwrb_showthread_banners_enabled] == 1 AND $vboptions[mrwrb_global_enable_banners] == 1">
<style type="text/css">
#mynicebannerouter {height: 105px; overflow: hidden; position: relative; width: 100%;}
#mynicebannerouter[id] {display: table; position: static;}
#mynicebannermiddle {position: absolute; top: 50%; width: 100%; text-align: center;} /* for explorer only*/
#mynicebannermiddle[id] {display: table-cell; vertical-align: middle; position: static;}
#mynicebanner {position: relative; top: -50%; text-align: left;} /* for explorer only */
#mynicebanner {width: 500px; margin-left: auto; margin-right: auto;} /* for all browsers*/
#mynicebanner[id] {position: static;}
</style>
<div id="mynicebannerouter">
<div id="mynicebannermiddle">
<div id="mynicebanner">
</div>
</div>
</div>
$mrwrb_forum_large
<SCRIPT LANGUAGE="JavaScript">
rotateImage('mynicebanner')
</SCRIPT>
</if>
<!-- END - mrwrb -->
Once again, thanks for any help or comments