Sycoloco1212 |
09-30-2008 09:36 AM |
Quote:
Originally Posted by jimnyc
(Post 1631335)
No drop-down menu to select another style in the footer?
Anyone know the trick to adding this?
|
goto the template for this, edit the footer and search for
FIND:
Code:
<a href="#top" onclick="self.scrollTo(0, 0); return false;">$vbphrase[top]</a>
REPLACE UNDER:
Code:
<form action="$vboptions[forumhome].php" method="get">
<if condition="$show['quickchooser']"><br><br>Select Your Style:
<select name="styleid" onchange="switch_id(this, 'style')">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select>
</if>
</form>
if you lazy todo that then just replace everything in ur footer with this =)
REPLACE ALL: ( OPTIONAL )
Code:
</td>
<td width="66" valign="top" align="right" background="skins/Death-X/images/right.jpg"></td>
</tr>
</table>
<table id="Table_01" width="100%" height="207" border="0" cellpadding="0" cellspacing="0">
<tr>
<td rowspan="3">
<img src="skins/Death-X/images/FT/footer_01.jpg" width="65" height="207" alt=""></td>
<td rowspan="3" background="skins/Death-X/images/FT/exp1.jpg" width="50%" height="207" alt=""></td>
<td>
<img src="skins/Death-X/images/FT/footer_03.jpg" width="238" height="61" alt=""></td>
<td>
<img src="skins/Death-X/images/FT/footer_04.jpg" width="158" height="61" alt=""></td>
<td>
<img src="skins/Death-X/images/FT/footer_05.jpg" width="240" height="61" alt=""></td>
<td rowspan="3" background="skins/Death-X/images/FT/exp2.jpg" width="50%" height="207" alt=""></td>
<td rowspan="3">
<img src="skins/Death-X/images/FT/footer_07.jpg" width="67" height="207" alt=""></td>
</tr>
<tr>
<td colspan="3" background="skins/Death-X/images/FT/cr.jpg" width="636" height="137" alt="">
<div class="smallfont" align="center">$vbphrase[all_times_are_gmt_x_time_now_is_y]</div>
<div class="smallfont" align="center">
<!-- Do not remove this copyright notice -->
$vbphrase[powered_by_vbulletin]
<!-- Do not remove this copyright notice -->
</div>
<div class="smallfont" align="center">
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
$vboptions[copyrighttext]
<strong>
<if condition="$show['contactus']"><a href="$vboptions[contactuslink]" rel="nofollow" accesskey="9">$vbphrase[contact_us]</a> -</if>
<if condition="$vboptions['hometitle']"><a href="$vboptions[homeurl]">$vboptions[hometitle]</a> -</if>
<if condition="$show['admincplink']"><a href="$admincpdir/index.php$session[sessionurl_q]">$vbphrase[admin]</a> -</if>
<if condition="$show['modcplink']"><a href="$modcpdir/index.php$session[sessionurl_q]">$vbphrase[mod]</a> -</if>
<if condition="$vboptions['archiveenabled']"><a href="archive/index.php">$vbphrase[archive]</a> -</if>
<if condition="$vboptions[privacyurl]"><a href="$vboptions[privacyurl]">$vbphrase[privacy_statement]</a> -</if>
<a href="#top" onclick="self.scrollTo(0, 0); return false;">$vbphrase[top]</a>
<form action="$vboptions[forumhome].php" method="get">
<if condition="$show['quickchooser']"><br><br>Select Your Style:
<select name="styleid" onchange="switch_id(this, 'style')">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select>
</if>
</form>
</strong>
</div></div>
</b></font></center></td>
</tr>
<tr>
<td colspan="3">
<img src="skins/Death-X/images/FT/footer_09.jpg" width="636" height="9" alt=""></td>
</tr>
</table>
<script type="text/javascript">
<!--
var tzOffset = $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
var utcOffset = new Date().getTimezoneOffset() / 60;
if (Math.abs(tzOffset + utcOffset) == 1)
{ // Dst offset is 1 so its changed
document.forms.dstform.submit();
}
//-->
</script>
<!-- / auto DST correction code -->
</if>
<script type="text/javascript">
<!--
// Main vBulletin Javascript Initialization
vBulletin_init();
//-->
</script>
Enjoy =)
|