Announcement

Collapse
No announcement yet.

Font colour on shopcart page

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

    Font colour on shopcart page

    Hi - I've managed to change font colour on the shopping cart

    www.moloh.com/acatalog/index.html

    except for the product name which is taken from the product page - which netquote var should I be looking for?

    (The product page is white text, I want it to be brown, as per the attached image (Attached, I hope...)

    Thanks - James

    (How would I insert a screenshot?)
    Attached Files
    James Gladwin

    #2
    The problem is that there is a hyperlink on the product name - and the store is using the default hyperlink colour - white.

    The code for the link is in the Perl in ActinicOrder.pm. Open this files in Notepad and find the following line...
    Code:
    my $sProdLinkFormat = "<A HREF=\"$::g_sSearchScript?PRODREF=%s&NOLOGIN=1&NOCLEARFRAMES=1\">%s</A>";
    Change it to read something like...
    Code:
    my $sProdLinkFormat = "<A HREF=\"$::g_sSearchScript?PRODREF=%s&NOLOGIN=1&NOCLEARFRAMES=1\"><font color=\"brown\">%s</font></A>";

    Comment


      #3
      Chris, Hi. I've been away - thank you so much...

      Best - James
      James Gladwin

      Comment

      Working...
      X