The Arcive of vBulletin Modifications Site. |
|
![]() |
|||||||||||||||||||||||||
These template edits will allow you to place either left or right column blocks on every page of your forum...
TO HAVE LEFT COLUMN BLOCKS ON EVERY PAGE Admin CP -> Styles & Templates -> Style Manager -> Common Templates (in the menu) In the HEADER template,find these codes Code:
<!-- logo --> <a name="top"></a> <table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="$stylevar[left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td> <td align="$stylevar[right]"> </td> </tr> </table> <!-- /logo --> Code:
<table width="$stylevar[outertablewidth]" border="0" cellpadding="0" cellspacing="0" align="center"> <tr> <td width="150" valign="top" class="page" style="padding: $stylevar[cellpadding]px;"> <!-- ################## Side Column ##################--> <table border="0" cellpadding="0" cellspacing="0" width="100%" align="center"> <div class="smallfont" style="line-height:1.5;"><strong>Forum Members: $numbermembers<br /> Total Threads: $totalthreads<br /> Total Posts: $totalposts<br /> <br /></strong> There are <a href="online.php" style="color:#854f99;">$totalonline users</a> currently browsing forums.</div>< </table> <!-- ################## /Side Column ##################--> </td> <td valign="top"> Save it and in the FOOTER template,find these codes Code:
<br /> <div class="smallfont" align="center">$vbphrase[all_times_are_gmt_x_time_now_is_y]</div> <br /> $spacer_close <!-- /content area table --> Code:
</td> </tr> </table> TO HAVE RIGHT COLUMN BLOCKS ON EVERY PAGE Admin CP -> Styles & Templates -> Style Manager -> Common Templates (in the menu) In the HEADER template,find these codes Code:
<!-- logo --> <a name="top"></a> <table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="$stylevar[left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td> <td align="$stylevar[right]"> </td> </tr> </table> <!-- /logo --> Add these codes after it Code:
<table width="$stylevar[outertablewidth]" border="0" cellpadding="0" cellspacing="0" align="center"> <tr> <td valign="top"> Save it and in the FOOTER template,find these codes Code:
<br /> <div class="smallfont" align="center">$vbphrase[all_times_are_gmt_x_time_now_is_y]</div> <br /> $spacer_close <!-- /content area table --> Code:
</td> <td width="150" valign="top" class="page" style="padding: $stylevar[cellpadding]px;"> YOUR CONTENT HERE </td> </tr> </table> 1 last step for either type of installation, In your Admin CP -> Styles & Templates -> Style Manager -> ? ? -> spacer_open Replace all the code inside with this codes Code:
<!-- open content container --> <if condition="$show['old_explorer']"> <table cellpadding="0" cellspacing="0" border="0" width="100%" align="center"><tr><td class="page" style="padding:0px $stylevar[spacersize]px 0px $stylevar[spacersize]px"> <else /> <div align="center"> <div class="page" style="width:100%; text-align:$stylevar[left]"> <div style="padding:0px $stylevar[spacersize]px 0px $stylevar[spacersize]px"> </if> Show Your Support
|
Comments |
#2
|
|||
|
|||
![]()
Thanks for sharing, could you show me how to add the search and the member login peice?
|
#3
|
|||
|
|||
![]() Quote:
Code:
<strong> <if condition="$show['searchbuttons']"> <form action="search.php?do=process" method="post"> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td class="vbmenu_option" title="nohilite"> <input type="hidden" name="do" value="process" /> <input type="hidden" name="quicksearch" value="1" /> <input type="hidden" name="s" value="$session[sessionhash]" /> <div><input type="text" class="bginput" name="query" size="16" tabindex="1001" /><input type="submit" class="button" value="$vbphrase[go]" tabindex="1004" /></div> </td> </tr> <tr> <td class="vbmenu_option"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td> </tr> </table> </form> </if> |
#4
|
|||
|
|||
![]()
And here's the log-in form visible for guests only
Code:
<!-- login form --> <form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, $show[nopasswordempty])"> <script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions[simpleversion]"></script> <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0"> <tr> <td class="smallfont"><label for="navbar_username">$vbphrase[username]</label></td> <td><input type="text" class="bginput" style="font-size: 11px" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td> </tr> <tr> <td class="smallfont"><label for="navbar_password">$vbphrase[password]</label></td> <td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" /></td> </tr> <tr> <td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />$vbphrase[remember_me]</label></td> </tr> <tr> <td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="104" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td> </tr> </table> <input type="hidden" name="s" value="$session[sessionhash]" /> <input type="hidden" name="do" value="login" /> <input type="hidden" name="vb_login_md5password" /> <input type="hidden" name="vb_login_md5password_utf" /> </form> <!-- / login form --> |
#5
|
|||
|
|||
![]()
I've being trying to add extra boxes but they always come up beside each other how do I align them correctly?
|
#6
|
|||
|
|||
![]()
Try add a <br /> tag at the end of each block or at the start of each new block
|
#7
|
|||
|
|||
![]()
Cheers
|
#8
|
|||
|
|||
![]()
This is a very nice alternative to the side column hack. I just used it on a style I'm developing and I love it.
However, how would I go about preventing the footer from being pushed over as well?? Before I added this, the footer expanded the whole width of the forum. Doesn't look good this way ![]() You can see what I mean here: http://www.themesbydesign.net/forums...php?styleid=64 Thanks for your help in advance. ![]() |
#9
|
|||
|
|||
![]() Quote:
|
#10
|
|||
|
|||
![]()
I tried Alan, but I'm assuming there is a character limit on pm's and posts here, as I tried to post it here as well and it wouldn't take it all. I've placed it into a txt file and attached.
Thank you. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|