Quote:
Originally Posted by lfpm
Great hack, my first vb hack (converted to vb last month)
Now i don't use the default style, so whan i added this hack, the vbindex is not looking the way the forum is, check it out
http://www.lfpm.org/vb/vbindex.php
http://www.lfpm.org/forum/index.php
I want to fix the header and footer to look same as the forum
Even more then that, i want to remove my homepage and make the vbindex my homepage ( www.lfpm.org ) but in order to do so, i have to edit somethings, i have to add some links and add a "big" link to the forum directly (the same way www.lfpm.org looks like)
So my question is, how to edit the file? (ive been trying to edit it for 2 days now but its not working)
Is there any help file about this?
Thanks
|
If you are refering to a link back to the portal from your forums, it's easy enough to do. You have to edit your forums navbar template.
I used this in the past
HTML Code:
<!-- Begin navbar link to forums home -->
<if condition="THIS_SCRIPT == 'vbindex'"><td class="vbmenu_control"><a
href="../forums.php">Forums</a></td>
</if>
<if condition="THIS_SCRIPT != 'vbindex'"><td class="vbmenu_control"><a href="../index.php">Portal</a></td>
</if>
<!-- <td class="vbmenu_control"><a href="../forums.php" onMouseOver="window.status='http://www.nemesisforums.net/forums.php'; return true" onMouseOut="window.status=' '">Forums</a></td>-->
<!-- End Navbar Link to Forum home-->
if you want the portal to become your main page you have to edit name of forums script in the admin panel, then name index.php to the name you used in the adminpanel, then rename vbindex,php to index .php
Then apply the code above in the navbar template.