Announcement

Collapse
No announcement yet.

Colour prob with cart contents under left navigation

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

    Colour prob with cart contents under left navigation

    Hi there

    I've got an annoying problem with the little box that displays the items and value of the cart contents - it appears under the navigation in the left hand column.

    Whatever colour I set the text to - the background sets to the same colour so I can't read it! I've not had this problem before - anyone help?

    Cheers

    Anna

    #2
    I'm guessing your design is based on one of the clean layouts.

    Open your Act_Primary.html template and locate the code:

    Code:
                <table width="100" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                    <td bgcolor="NETQUOTEVAR:FGCOLORCSS">
                      <div align="center"> <span class="actxxsmall"> <font color="NETQUOTEVAR:BGCOLORCSS">
                        <script language="JavaScript">
    						document.write("NETQUOTEVAR:CARTCOOKIEITEMS&nbsp;" + getCartItem(3)+"&nbsp;<BR>");
    						document.write("NETQUOTEVAR:CARTCOOKIEVALUE&nbsp;" + getCartItem(1));
    					</script>
                        </font></span> </div>
                    </td>
                  </tr>
                </table>
    NETQUOTEVAR:FGCOLORCSS is the variable for the default text colour - which is used as the background to the box.

    NETQUOTEVAR:BGCOLORCSS is the variable for the default background colour - which is used as the text colour in the box.

    Change these as necessary.

    Comment

    Working...
    X