Announcement

Collapse
No announcement yet.

Headers, a quick query

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Headers, a quick query

    Hi All

    I've just worked up a new company logo for my site (www.mailorder4x4.com), which is fine and dandy. However prior to me changing the logo I had a simple search option to take you to any section to the right of the logo. I want to do away with this. Is the code I need to alter the
    </span> </td>
    <td>NETQUOTEVAR:SIMPLESEARCH</td>
    </tr>
    </table>

    section in the following header script (right down at the bottom)

    <!-- NETQUOTEVAR:LOGINLINK -->

    <!-- The following two lines can be uncommented and moved to include the section image -->
    <!-- and description in the section page headers -->
    <!-- NETQUOTEVAR:SECTIONIMAGE -->
    <!-- NETQUOTEVAR:SECTIONTEXT -->

    <!--<H1>NETQUOTEVAR:PAGEHEADER</H1>-->

    <span class="actxsmall"><b>NETQUOTEVAR:HEADERTEXT</b></span>

    NETQUOTEVAR:SEPARATORBAR

    <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="CUSTOMVAR:ACTSTDWIDTH" ALIGN="CENTER">
    <TR>
    NETQUOTEVAR:HEADERGUIDE
    </TR>
    </TABLE>

    NETQUOTEVAR:SEPARATORBAR

    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td align="center"><span class="actxsmall"> NETQUOTEVAR:CARTCOOKIEITEMS
    <script language="JavaScript">
    <!--
    document.write(getCartItem(3));
    // -->
    </script>, NETQUOTEVAR:CARTCOOKIEVALUE
    <script language="JavaScript">
    <!--
    document.write(getCartItem(1));
    // -->
    </script>
    </span> </td>
    <td>NETQUOTEVAR:SIMPLESEARCH</td>
    </tr>
    </table>
    NETQUOTEVAR:SEPARATORBAR

    <!-- This file is used to build the page headers including the title, logo, etc. -->
    <!-- Header HTML end -->

    Any help would be great

    Thanks all

    Shaun
    Shaun

    www.mailorder4x4.com

    Landrover, Range Rover, Discovery and Freelander Spares & Accessories.

    #2
    Yep - simply delete the references to NETQUOTEVAR: SIMPLESEARCH


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      Many thanks Jont! Quick and helpful as ever.

      Cheers
      Shaun

      www.mailorder4x4.com

      Landrover, Range Rover, Discovery and Freelander Spares & Accessories.

      Comment


        #4
        AAAGH! I've tried deleting the section of code, then uploading... no change, tried putting it between <!-- -->, then uploading still the same what am I doing wrong?

        Cheers
        Shaun

        www.mailorder4x4.com

        Landrover, Range Rover, Discovery and Freelander Spares & Accessories.

        Comment


          #5
          Probably viewing a cached page?

          Comment


            #6
            No the quicksearch is not what's showing to the righr of your page - it is a section drop selector.
            Have a look in your Act_Primary template for this below and try deleting it and uploading your site:

            <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
            <!--

            function ACT_DropListBox(ar)
            {
            var strIDs = '<SELECT SIZE="1" NAME="ACT_droplstbox" onChange="if(options[selectedIndex].value) window.location.href=(options[selectedIndex].value)">'
            var sel = " SELECTED"
            strIDs += '<OPTION ' + sel + ' VALUE="">Select a Section</OPTION>'
            for (var i=1;i<=ar.length;i++)
            {
            if (ar[i].sURL !=null)
            {
            strIDs += '<OPTION VALUE="' + ar[i].sURL + '&NOCLEARFRAMES=1">' + ar[i].sName + '</OPTION>'
            }
            }
            strIDs+='</SELECT>'
            return strIDs
            }
            //-->
            </SCRIPT>

            Comment

            Working...
            X