Announcement

Collapse
No announcement yet.

Changing the style of the quantity field in the shopping cart

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

    Changing the style of the quantity field in the shopping cart

    Hi all

    I have managed to find the Input tag in "Design | Text" to alter the look of the quantity field on the product pages. But I can't find the Input tag for the quantity field in the cart.

    Presumably this is buried in one of the perl scripts. Can someone point me in the right direction please?

    Many thanks

    Bob
    Bob Smith
    Quality Workwear Clothing
    Personalised Corporate wear
    www.workwearhouse.co.uk

    #2
    Most Cart display related stuff is in ActinicOrder.pm. The quantity on Confirmation page stuff is in ShoppingCart.pl.

    Searching these for tiny bits of HTML should find what you want.

    Note that whenever Actinic produces an update the Perl usually gets replaced by new versions and you'll have to redo all these patches again.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thanks Norman, I managed to find the relevant bit of HTML in Actinicorder.pm

      I always add comments to my changes so that I can re-do them when we upgrade. It would be really useful if Actinic could put more of the HTML formatting into "Design | Text" in future versions so that we didn't have to tamper with the perl scripts.

      Thanks again

      Bob
      Bob Smith
      Quality Workwear Clothing
      Personalised Corporate wear
      www.workwearhouse.co.uk

      Comment


        #4
        Would it not work just to edit the CSS style for the input boxes?

        ie - putting this in your actinic.css:

        input { background: #fff; border: 1px solid #000; }

        (that gives you a white background with a black border)

        Comment

        Working...
        X