Drop down menus not working!

monty007

New Member
hello guys,

i use a mechanical fluid theme on my 3.7.3 vb.i edited footer to remove copyrights from it.after than all drop down menus like search in navbar,
size-font options on posting page stop working..wht cud be the problem...plz help me...
 
restore the phrases there that's should work theirs a disclaimer about not deleting a certain portion of the footer or a lot of things will go wrong.
 
what you do is keep the copywright and go to your css and change

.footer{
font:10px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
color:#ffffff;
background:#202020;
padding:4px
}

Thats what i see in the Additional CSS Definitions on v3.6.8.

change the
color:#ffffff;
to what every your background is and your site will work, but the VBcopywright will be hidden as it will be the same as the background...

but then VB cant do you as the copywight is there..... well not as much anyway,,,
 
mojopanel your wrong so look again.....here is the code just re-place it with what you have in the footer


HTML:
$ad_location[ad_footer_start]
<!-- /content area table -->
<br />
<div class="smallfont" align="center">$vbphrase[all_times_are_gmt_x_time_now_is_y]</div>
<br />
 
 
<if condition="$show['quickchooser']">
    <div>
        <span style="float:$stylevar[align=right]">
            Developed by ForumThemes.com</a>
        </span>
        <form action="$vboptions[forumhome].php" method="get">
        <select name="styleid" onchange="switch_id(this, 'style')">
            <optgroup label="$vbphrase[quick_style_chooser]">
                $quickchooserbits
            </optgroup>
        </select>
        </form>
    </div>
    <br />
</if>
<if condition="$show['languagechooser']">
        <td class="tfoot">
            <select name="langid" onchange="switch_id(this, 'lang')">
                <optgroup label="$vbphrase[quick_language_chooser]">
                    $languagechooserbits
                </optgroup>
            </select>
        </td>
    </if>

 
</div>

<div align="center">
    <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]
    </div>
</div>
        <div class="smallfont" align="right">
            <strong>
                <if condition="$show['contactus']"><a href="$vboptions[contactuslink]" rel="nofollow">$vbphrase[contact_us]</a> -</if>
                <a href="$vboptions[homeurl]">$vboptions[hometitle]</a> -
                <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>
&nbsp;&nbsp;
            </strong>
        </div>
<br />
<div class="footer">
    <a href="#top"><img src="{IF}/footer_top.gif" alt="" border="0" /></a>
 
</div>
    </div>
</div>
$ad_location[ad_footer_end]

<if condition="$show['dst_correction']">
<!-- auto DST correction code -->
<form action="profile.php?do=dst" method="post" name="dstform">
    <input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
    <input type="hidden" name="do" value="dst" />
</form>
<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>
 
Back
Top