UK TV Guide v1.0
Installation is very simple:
Code:
PHP Code:
Upload tv_guide.php to your forum root.
Then go to Admincp>Plugins & Products>Manage Products>import product
and import: product-tv_guide.xml
now go to Admincp>Styles & Templates>Style Manager>on your style choose "main CSS">scroll to the bottom to "Additional CSS Definitions" and at the bottom of the second box paste:
#container{
width:850px;
height:750px;
border:none;
overflow:hidden;
margin:auto;
}
#container iframe {
width:850px;
height:750px;
margin-left:0px;
margin-top:0px;
border:0 solid;
}
Done!
It automatically adds a link to your "quick links" dropdown bar but if you'd like to add a link to your navbar:
Code:
PHP Code:
In Template navbar
FIND
--------------------------------------------------
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>
--------------------------------------------------
BELOW that ADD
--------------------------------------------------
<a href="tv_guide.php">UK TV Guide</a></td>
--------------------------------------------------