Announcement

Collapse
No announcement yet.

How do I stop my side menu repeating?

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

    How do I stop my side menu repeating?

    I have used a background image behind my shop buttons in Catalog. This would be great if it weren't for that fact that it repeats when the items in the shop increase.

    Is there a way to stop this. Can I use a style sheet?

    I have pasted the Act_Primary code from my page below.

    Thanks

    <!-- Primary HTML begin -->
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE>
    NETQUOTEVAR:PAGETITLE NETQUOTEVAR:PAGEHEADER
    </TITLE>
    <Actinic:BASEHREF VALUE="NETQUOTEVAR:BASEHREF"/>
    <META NAME="ACTINICTITLE" CONTENT="NETQUOTEVAR:PAGEHEADER">
    <META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
    <!--@act NETQUOTEVAR:HEADERMETA -->
    <!--@act NETQUOTEVAR:LOADFUNCTION -->
    <!--@act NETQUOTEVAR:SUBMITFUNCTION -->
    <!--@act NETQUOTEVAR:P3PFULLPOLICYLINK -->
    <LINK REL=STYLESHEET HREF="actinic.css">


    <SCRIPT LANGUAGE="JavaScript" SRC="actiniccore.js" TYPE="text/javascript"></SCRIPT>
    <SCRIPT LANGUAGE="JavaScript" SRC="actinicextras.js" TYPE="text/javascript"></SCRIPT>

    <!-- Placeholder of cookie checking javascript code. Do not remove it! -->
    <Actinic:COOKIECHECK/>

    <!--
    The NETQUOTEVARs below can be uncommented for getting raw section lists:
    1. Top level section list
    2. Section list from current level and all children
    3. The whole section tree
    The rest covers the standalone structure members for each array - e.g. if
    you only need sName or sURL from an array.
    See the documentation for details.

    NETQUOTEVAR:TOPLEVELSECTIONS_RAW
    NETQUOTEVAR:CHILDSECTIONS_RAW
    NETQUOTEVAR:SECTIONTREE_RAW

    NETQUOTEVAR:SECTIONTREE_NAMES
    NETQUOTEVAR:SECTIONTREE_URLS
    NETQUOTEVAR:SECTIONTREE_IMAGES
    NETQUOTEVAR:SECTIONTREE_IMAGEWIDTHS
    NETQUOTEVAR:SECTIONTREE_IMAGEHEIGHTS
    NETQUOTEVAR:SECTIONTREE_SECTIONIDS

    NETQUOTEVAR:TOPLEVELSECTIONS_NAMES
    NETQUOTEVAR:TOPLEVELSECTIONS_URLS
    NETQUOTEVAR:TOPLEVELSECTIONS_IMAGES
    NETQUOTEVAR:TOPLEVELSECTIONS_IMAGEWIDTHS
    NETQUOTEVAR:TOPLEVELSECTIONS_IMAGEHEIGHTS
    NETQUOTEVAR:TOPLEVELSECTIONS_SECTIONIDS

    NETQUOTEVAR:CHILDSECTIONS_NAMES
    NETQUOTEVAR:CHILDSECTIONS_URLS
    NETQUOTEVAR:CHILDSECTIONS_IMAGES
    NETQUOTEVAR:CHILDSECTIONS_IMAGEWIDTHS
    NETQUOTEVAR:CHILDSECTIONS_IMAGEHEIGHTS
    NETQUOTEVAR:CHILDSECTIONS_SECTIONIDS

    The section level can be accessed through:
    NETQUOTEVAR:SECTIONLEVEL
    -->


    <!--
    The NETQUOTEVARs below can be uncommented and moved to the appropriate

    location
    to save and load shopping lists
    <A HREF="NETQUOTEVAR:SAVECARTURL"><FONT FACE=ARIAL SIZE=-1><I><B>Save

    Shopping List</B></I></FONT></A>
    <A HREF="NETQUOTEVAR:RESTORECARTURL"><FONT FACE=ARIAL SIZE=-1><I><B>Load

    Shopping List</B></I></FONT></A>
    --->

    </HEAD>

    <BODY bgcolor="#E6E6E6" TEXT="NETQUOTEVAR:FGCOLOR" leftmargin="0" topmargin="0" marginwidth="0" marginheight="5" OnLoad="NETQUOTEVAR:ONLOAD" NETQUOTEVAR:BGIMAGE NETQUOTEVAR:BGCOLOR NETQUOTEVAR:LINKCOLOR NETQUOTEVAR:VLINKCOLOR NETQUOTEVAR:ALINKCOLOR>

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td height="19">NETQUOTEVAR:LOGOIMAGE </td>
    </tr>
    </table>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="8%" height="495" valign="top" background="sidemenu.jpg">
    <div align="left">
    <p><br>
    </p>
    <p>NETQUOTEVAR:FOOTERGUIDE</p>
    <p>NETQUOTEVAR:SIMPLESEARCH<br>
    </p>
    <p><br>
    <br>
    </p>
    </div>
    </td>
    <td width="92%" rowspan="2" valign="top">
    <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="CUSTOMVAR:ACTSTDWIDTH" ALIGN="CENTER">
    <TR>
    <TD VALIGN="MIDDLE" ALIGN="LEFT" > NETQUOTEVAR:FORMBEGIN <A NAME="top">
    <INPUT TYPE=HIDDEN NAME=RANDOM VALUE="NETQUOTEVAR:RANDOM">
    </A> NETQUOTEVAR:HIDDENFIELDS
    <!-- If customer accounts are in operation following two lines allow displaying -->
    <!-- User name and customer account name on every page -->
    <!-- NETQUOTEVAR:LOGINLINK -->
    <Actinic:NOWSERVING/> <Actinic:CURRACCOUNT/><Actinic:LOGOUT_SIMPLE/><br>
    <!-- NETQUOTEVAR:HEADER -->
    <span class="actxsmall">NETQUOTEVAR:HEADERTEXT<br>
    <br>
    </span> NETQUOTEVAR:BULK <br>
    <br>
    <span class="actxsmall">NETQUOTEVAR:FOOTERTEXT</span>
    <!-- NETQUOTEVAR:FOOTER -->
    NETQUOTEVAR:FORMEND<br>
    </TD>
    </TR>
    </TABLE>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    </td>
    </tr>
    <tr>
    <td valign="top"><p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p> <p>&nbsp;</p>
    <p>&nbsp;</p></td>
    </tr>
    </table>
    </BODY>
    </HTML>
    <!-- Primary HTML end -->

    #2
    I think you have to put something like no-repeat in with the background image

    Yes is easy to do with CSS

    Comment


      #3
      Add the line...

      background-repeat: no-repeat;

      after...

      background-image: url(NETQUOTEVAR:BGIMAGECSS);

      in actinic.css.

      Comment

      Working...
      X