Announcement

Collapse
No announcement yet.

Ugly gap between text and components when price is £0

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

    Ugly gap between text and components when price is £0

    On many of my products the price is set to £0.00 and the pricing is determined in the components.

    Without the NQV for the price there is just a big ugly gap where this would normally be.

    Any ideas how I can close this gap?

    Ta

    #2
    There are a couple of ways using Javascript or CSS ... I will leave the Javascript to someone else but using CSS method duplicate your Act_ProductLine.html and wrap the NQV: PRODUCTPRICE into a div and set a class with display:none ... that will remove the price from the flow and close the gap it is generating.

    HTH


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      will give this a go.

      cheers

      Comment


        #4
        You can also put your lowest component price in the box, and change the prompt (on the product layout tab) to Prices from:
        Bill
        www.egyptianwonders.co.uk
        Text directoryWorldwide Actinic(TM) shops
        BC Ness Solutions Support services, custom software
        Registered Microsoft™ Partner (ISV)
        VoIP UK: 0131 208 0605
        Located: Alexandria, EGYPT

        Comment


          #5
          Jont, not quite getting this right.

          Can you post what the NQV:PRODUCTPRICE should look like in the html?

          Sorry to be a pain.

          Ta.

          Comment


            #6
            use something like :

            Code:
            <div class="productPrice">NETQUOTEVAR : PRODUCTPRICE</div>
            remove the gaps either side of the ":" above

            in the css use something like:

            Code:
            .productPrice {
            display:none;
            }
            that should remove the product price from the flow and using a <div> will also allow you to use either positioning or negative margins if you need to close the gap further.

            not tested


            Bikster
            SellerDeck Designs and Responsive Themes

            Comment

            Working...
            X