Are online shops screened by Adobe?

I was wondering if there is some kind of screening of vendors who offers Adobe Products. I found shops with prices that are unbelievable low. Why would someone pay $1899 for Suite if it`s available for as low as $898 (VMShops), $1,099 (Amazon third party vendor), ComuterSoftwarePlus.com (The same Suite, but 3 different prices $989, $1,279 & $1,398).I hope, I`m not doing wrong by giving URLs here. I`d rather be sure that people don`t get screwed and better buy from approved vendors.I cannot say anything about above shops as I have never dealt with them. I found on PriceGrabber. If somene can shade some light on this. Adobe Team, please

Claudio González wrote:
I'm not a member of the Adobe team, but I learned many decades ago to carefully avoid any software offer that looks too good to be true.
It is not the "offer that looks too good to be true" to avoid but the retailer you have not heard of.  I always look foir bargains but my first point of call is Amazon.  If, at all, I have seen a better offer somewhere else, I make a point of bringing this to the attention of Amazon to see if they can match it or better it for me.  Keep a link of Retailers who are selling cheap products so that you can paste it in your message to amazon.  On Amazon page of the product, you should look for something like this in this picture (click on it to magnify it):

Similar Messages

  • I purchased Creative design premium 5 in 2011 and have had to resett my new computer and i do not have a disk drive.... I need to download from online and dont know how. my serial numbers are on file in my adobe account

    I own a copy of creative design premium 5 and my new laptop doesnt have a disk drive..... How do I download for site... My serial numbers are on file in my adobe account.... I need to reinstall it to this computer because I have had to reset it. I have tried to download it but it is telling me that I am denied access.

    Download CS5 products
    If you get issues, use another browser and make sure you allow JavaScript and your security tools don't block the page.
    Mylenium

  • Apple Macbook warranty valid for online shopping ?

    I would like to buy Macbook Air from online shopping sites like flipkart.com or snapdeal.com . But i'm not clear regarding warranty. 
    As snapdeal and flipkart.com displaying 1year warranty in their websites, but these websites are not authorised apple sellers.  In future, if  i face any hardware problems or yellow tint on screen, will apple service center accept my warranty ?

    Welcome to Apple Discussions.
    After you purchase the machine you can add a legitimate 3yr Apple care plan if the machine is indeed new.

  • Officejet 8600 missing parts of online shopping cart orders I receive

    My new networked Officejet 8600 is selectively printing parts of an online shopping cart whose orders I print out. The order shows perfectly in the 'preview screen" but certain parts of the order, such as the city, are blank spaces.
    Also, when testing other online pages, they  come out fine. Don't know what to do! Please help. The shopping cart company blames the printer. 

    I found and corrected the issue.
    A BADI Enhancement Spot ME_PROCESS_PO_CUST was implemented. The Method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM was modified within this Implementation. The focus of this upodate was to Modify the ROUTE information within the SHIPPING information in the PO Update Process (PTV Internal Table within  ABAP SAPLMEPO). Unfortunately, the ultimate update of this internal table destroyed the UPDKZ indicator, which signifies when the EKPV record is to be created ('I') or updated ('U'). The update ultimately did not create the EKPV record.
    Once this METHOD and the above SAP Enhancement (MM06E005 - EXIT_SAPMM06E_012 - ZXM06U43) were corrected, an STO Modification (creation of a new Item) ALWAYS creates a Shipping Tab (EKPV record).

  • Transaction BP start in sales area - status view screen

    I'm calling from outside of R/3 (from CRM).
    I want to start online transaction BP started, but I want to start up in the sales area, and the screen status. This is crucial because it is must be done several times by the users.
    I have tried to see examples in the code how memory with structure BUS_NAVIGATION is filled. But it does not work.
    Any suggestions?
    BR
    Bent Holm Nielsen
    [email protected]
    FUNCTION ZE_SD_CIC_CALL_TRANS_BP.
    *"*"Local interface:
    *"  IMPORTING
    *"     VALUE(TCODE) TYPE  TCODE
    *"     VALUE(KUNNR) TYPE  KUNNR OPTIONAL
      DATA lv_key(34) TYPE c.
      DATA ls_indx    TYPE indx.
      constants: gc_shared_buffer_id type INDX-SRTFD value
                'BUPA_NAVIGATION_REQ'.
      data: ev_instance type ref to CL_BUPA_NAVIGATION_REQUEST.
      data GS_NAVIGATION type BUS_NAVIGATION .
      data GS_NAVIGATIONX type BUS_NAVIGATIONX .
      data GV_TITLE type BUS_SCREEN-TITLE .
      if tcode eq 'BP' and not kunnr is initial.
        SELECT single PARTNER_GUID into gs_navigation-PARTNER_GUID
               FROM  BUT000
               WHERE  PARTNER       = kunnr.
        if sy-subrc gt 0.
          exit.
        endif.
        data: lt_role type BU_role_t,
              ls_role type BU_RLTYP,
              lin type i.
        refresh lt_role.
        SELECT RLTYP appending table lt_role
               FROM  BUT100
               WHERE  PARTNER  = kunnr.
        describe table lt_role lines lin.
        if lin le '1'.
          read table lt_role into ls_role index 1.
          if sy-subrc eq 0.
            gs_navigation-BUPA-PARTNER_ROLE = ls_role.
          else.
            exit.    "The function module
          endif.
        else.
          read table lt_role into ls_role
                     with key 'ZCRM01'.  "sold-to
          if sy-subrc eq 0.
            gs_navigation-BUPA-PARTNER_ROLE = ls_role.
          else.
            read table lt_role into ls_role index 1.
            if sy-subrc eq 0.
              gs_navigation-BUPA-PARTNER_ROLE = ls_role.
            else.
              exit.    "The function module
            endif.
          endif.
        endif.
    * Start Export data to the ABAP memory
        gs_navigation-bupa-activity       = '02'.
        gs_navigation-bupa-sub_header_id  = 'LOCU90'. "Status screen at bp
        gs_navigation-bupa-sub_header_tab = 'LOCU90'. "Status screen at bp
    *Break sapbhn.
    *data: lt_fields type table of BUS0FLDVAL,
    *      ls_fields type BUS0FLDVAL.
    *    ls_fields-TBFLD = 'RF02D-VKORG'.
    *    ls_fields-FLDVL = 'S001'.
    *    insert ls_fields into table lt_fields.
    *    gs_navigation-bupa-FIELD_VALUES[] = lt_fields[].
        CONCATENATE gc_shared_buffer_id sy-uname INTO lv_key.
        gs_navigationx-partner_guid      = 'X'. "Guid
        gs_navigationx-bupa-partner_role = 'X'. "Role
        gs_navigationx-bupa-activity     = 'X'. "Change mode
        EXPORT gs_navigation  FROM gs_navigation
               gs_navigationx FROM gs_navigationx
               gv_title       FROM gv_title
               TO DATABASE indx(bp) FROM ls_indx ID lv_key.
    * End  Export data to the ABAP memory
        call transaction 'BP'.
      endif.

    Hi,
    have you found any solution?
    Please, if you have, send me an email to [email protected]
    I would appreciate so much your explanations.
    Best Regards,
    Rosa

  • Collect Reponses Online tab in the Adobe FormsCentral desktop app

    Where is the "Collect Reponses Online tab in the Adobe FormsCentral desktop app" ?

    Are you using the app bundled with Acrobat XI? or the one downloaded from the FormsCentral website? Only the former one has that tab.
    Randy

  • Online Shop Problems Pre-Ordering N97 in UK

    I cannot find any other forum, and I seek to make this as public as possible because the way loyal customers are being treated by Nokia are think are wrong. If Nokia see fit to remove this post without sorting these problems, then fair enough.
    I am disillusioned with the Nokia UK Online Shop and its practices. My experience has given me a bitter taste of Nokia and I consider that the whole operation needs an overhaul to gain confidence.
    When making an order, especially a pre-order with a company that has a global reputation like Nokia, I expect several things. Firstly, to be kept informed as to the status of my order, stock availability and expected delivery date. I would expect a pre-order should get more priority over existing orders. I expect Nokia should aim to get every order if not delivered, at least shipped for the release date. I expect when enquiring about my order, to be given information especially when there is only a week to go until release.
    There seems little point in making a pre-order when I can order from elsewhere quicker.
    On 13th June 2009, I placed my order for a White Nokia N97 under order reference number CNLXXXXXXXXXX.
    The Nokia UK Online Shop does not provide details at point of order about expected release dates, quantity, or shipping dates. I would expect Nokia to know about their own products first. The idea that Nokia are operating without any form of forward planning or logistics is quite amusing.
    Shortly after I placed my order, I received an email advising that the phone has an anticipated shipping date of three to four weeks. This made me nervous and wondered whether there was a problem with the White Nokia N97 – after all, there is no information on the website.
    On 15th June 2009, I phoned Nokia to enquire as to the status and was advised that there is nothing wrong and that the phone is “due” to be released on the 19th June and I should get my phone sometime after that. Unfortunately again, with less than a week to launch, Nokia did not have any firm information to hand either about their own products or their own systems.
    Firstly, it seems Nokia don't know their own stock movements. Secondly, the fact I have to wait until after the 19th to receive the phone makes a mockery of the entire pre-order process and really does invalidate the whole premise when we have to wait beyond release.
    Nokias own blog also guarantees that when you pre-order, “it will be shipped direct to your door from the production line so you'll have it the same day it hits the store in your country”. I highlight the relevent point here.
    Receiving the phone AFTER it hits the stores is not the same day. When I pointed this out to Nokia customer service, I was advised:
    “The N97 is due to be released on 19th June. If you bought it from a shop, you would have to wait for it to go from the production line, to a warehouse, then to a subsidiary warehouse before being sent to a shop. Hopefully therefore you will get yours before this.”
    This is patronising and clearly an incorrect comparison given that the phone should be shipped from the factory. It twists what was in the blog which guaranteed delivery on release day, a guarantee broken in the US where I understand customers had to wait several weeks to clear the back log. This is very bad PR.
    There were still a few days left before the 19th June. I relaxed a little and waited patiently for my credit card to be billed. Users on the forums were also showing concern especially when websites such as Expansys.co.uk and Play.com started guaranteeing dates and providing arrival times.
    The fact that others can make promises and provide information where Nokia cannot, illustrate my point beautifully. Nokia do not have any information to suggest that users will even receive their phones by the 26th June.
    By 3pm on the 17th June, my credit card had still not been charged and my order had not been updated. Users on the forums including a couple of users who had ordered yesterday, were receiving credit card charges and emails advising that their Black Nokia N97s were being fulfilled and shipped. At least for these, it looks like they will be receiving their devices in time.
    I phoned Nokia once more to see if there was any problem with the White handset. I was again assured that there was no problem and that it is first come first served. But I had little to no reassurance as to when another batch of phones would be received and processed. It seems no one actually knows, least of all Nokia. If someone who ordered after me received their phone before me, I would be rightly angry and upset with Nokia.
    I asked whether it would be worth swapping my order contents from the White N97 to the Black N97. I was advised I cannot make a change to my UNPROCESSED order without it being moved to the back of the queue.
    I feel that Nokia have taken advantage of its loyal customers and strung us along by not providing any real information. If I had ordered an N97 from the Expansys website today, I could have had my phone tomorrow and for the same price as Nokia.
    What advantage has pre-ordering given me? I haven't got my phone, my order hasn't been shipped, it hasn't been allocated, my credit card hasn't been charged. Nokia don't know when they can fulfil my order. By choosing Nokia, I have had no order tracking, no information, broken promises, no guarantees, delays and a substandard service. Worst of all, Nokia cannot get my pre-order to me quicker than Expansys.
    Therefore, in summary, I make the following requests:
    1)Make a pre-order count for something. A pre-order should get to me on time and get to me before it is released elsewhere. Otherwise there is no point of pre-ordering from Nokia.
    2)Provide an “Expected Release Date” on your pre-order pages – when there are two different versions of the same product, users have to guess as to the availability of both.
    3)Provide an “Expected Shipping/Arrival Date” on your pages – if you have two different products and I don't care about colour, I should be given the chance to order the one that will be in stock first!
    4)Don't make promises that you cannot keep, no matter how informal they are.
    5)After being found out, do not back track and pretend it means something else. Get the problem rectified by means of either meeting the deadline, offering a free gift, or offering an apology or explanation.
    6)When I phone to find out when my order will be fulfilled, please, have some information available about your own phones and processes.
    7)If you have two different versions of a product available and one is available first, let me switch without incurring penalty.
    8)Give me a better service than other websites. If you cannot ship them quickly enough before the release date, you are either not shipping early enough, or not shipping quick enough.
    In relation to my order, please tell me whether there has been a problem with the White N97, why those who ordered Black N97s on 8th June and 16th June are getitng their orders fulfilled and I am still waiting, and please tell me when I can get mine. Please also swap my product for the N97 Black if this will resolve any bottlenecks.

    Your complaint will not be seen by the people who run the UK shop here.
    You need to use the "contact us" link if you want the correct people to see your comments.
    I do agree with most of what you wrote as I have been let down twice in the past by the UK online store for pre-orders.  Their customer service is uninformed, unhelpful and resort to telling lies.  For those reasons I do not use them.

  • My photos are not printing right with adobe manages color but works when i use printer manages color. never had any issues untill a week ago.

    my photos are not printing right with adobe manages color but works when i use printer manages color. never had any issues untill a week ago.

    We use CS6, yes we calibrate using x-rite. I have always had adobe manage colors when printing. This problem just occurred, all my settings are the same as they have been for years. The only thing we did lately is do an update to CS6. We thought it might be our printer but when we use the printer manages color it works fine, The problem with adobe manages color is it is not blending the light highlights like on top of the cheeks with the colors around the cheeks  and its putting a faint red between the two it just does not have a smooth transition. I printed a photo that I had printed 4 months ago with no issue, and this time it had the issue that I am dealing with now. Somehow the photo shop manages color is not getting the right info to my printer.  
    I set paper type
    set quality
    no color adjustment
    set my profile
    Teri

  • Online shop restrictions for handling restaurant takeaway orders

    Hi everyone. I'm wondering if any of you can help me out here. I'm still trying to work out a solution for my restaurant clients who want to be able to utilise online ordering via the BC e-commerce module. The trouble is, the following needs to be factored into the solution:
    Delivery area: a pop up or other type of message needs to be displayed when someone clicks one of the 'Add to cart' buttons for the first time. The message needs to display the delivery suburbs that the restaurant delivers to (so they are effectively restricting delivery to a select number of suburbs only).
    Delivery times: same as above – the aforementioned message needs to also display the delivery time options available to the orderer.
    Right sidebar – needs to display the cart as it is filled. It needs to be displayed on the same page.
    Minimum order amount: For home delivery orders, there would be a minimum order amount, but this would not be necessary for takeaway orders (where the purchaser picks the order up from the restaurant instead of having it delivered).
    For an example of what I am looking for see this site:
    http://www.menulog.com.au/order/kl_kitchen_restaurant#orderTakeaway
    We can get the online shop functioning easily enough, but I have no idea how to add the additional functionality mentioned above. Or how much it could cost to deliver such a solution.
    Any of you out there with good javascript and BC skills have any suggestions?
    Any help greatly appreciated.
    Cheers Fenwick

    - BC by Default does not restrict Suburbs based on distance or anything like that and will have to be done manually.
    - You will have to overide and update the addtocart javascript function to pre-launch something if you want to have that message show up.
    - BC Does not support any time based derlivery options. The only way you can do this is use the "Capture details" element of a product and have a modal window activate on the addTocart click which populates that hidden field with information such as the time. That, you will need to create based on current time and the derlivery time estimates for the company (how fast they can make it) etc.
    - The right sidebar of items can not be done out of the box (by default) by BC either and not easily using scripting, a high level of BC and javascript/jQuery. You will have to ajax in the items from the cart AND also overcome the BC dom killing scripts so it keeps updated and stays running.
    - You will need to do this with scripting also on the cart page.
    Costing to get this done - Quite high as there is will be only a select few with BC knowledge who will know how to do this porperly.

  • Customized products online shop with business catalyst

    Hello,
    I'd like to create an online shop with business catalyst ni which my clients would be able to customized my products with text and photos.
    Do you know any way of doing that? Of course, i'm looking for something not too expensive and working well.
    Some more details: on my products, i would need a fixed template with some info that should not be removable by clients (such as the weight), and i need to be able to pré-define areas on my products where customers can add text and others where they can upload a picture, resize it, zoom in and out, etc.
    Do you know any way to solve my problem?
    Thank you in advance
    Sylvain

    Can i just check with you that this is correct?
    Thanks
    /* View Type: Grid */
    .products-grid { width:100%; float:left; padding-top:15px;}
    .products-grid.last { border-bottom:0; }
    .products-grid .productSmall li { float:left; width:220px; padding: 0 10px 20px 0;
    Height:330px;}
    .products-grid .product-image { display:block; margin:0 0 5px; }
    .products-grid .product-name { font-weight:bold; font-size:13px; font-weight:bold; }
    .products-grid .product-name a{ color:#000!important; }
    .products-grid .availability { line-height:21px; }
    .products-grid .actions { font-size:11px; text-transform:uppercase;  }
    .products-grid .actions a { color:#3c7fa8;}
    .col2-left-layout .products-grid,
    .col2-right-layout .products-grid {margin:0 auto;  }
    .col1-layout .products-grid { margin:0 auto; }

  • Hide navigation area from Shopping Cart window

    Hi All,
    We are facing a strange issue in Shopping Cart Page..
    From the POWL screen when we are clicking on "Display" button it is opening  com.sap.pct.srm.core.iv_shopprof iview in a new window. But all the navigation are still showing in the page.
    We set Launch in New Window property as Display in Separate Headerless Portal Window but still it is showing navigation area in the scree.
    Can any one tell me how to hide navigation area from the screen.
    Regards,
    Sambaran Chakraborty

    Hi Yatin,
    Thanks for your reply.
    I just find a easy way to solve this issue. I changed the Launch in New Window property to Display in Separate Window and it works.
    But now i am facing the same problem for Purchasing iview under Operational Purchaser role. All links in that BI report (Purchasing iview) are opening in a new window with navigation area.
    I am not able to apply the same above idea in this case, as for all BI links there is no such specific iview present, they are jsut a application links coming from backend.
    Can you provide some input on this..?
    Regards
    Sambaran

  • Creating Online Shop

    After a steep learning curve, and help from the forum, I have
    my clients new site up:
    www.entwyne.com
    Next step is to fill the product pages.... I need to create
    an online shop...
    The hard part is making it so my client can update, ad new
    products and include a Paypal button.
    I want to do something simple like this:
    http://www.mariecristine.com/?&mp=Default&class=inventory&id=SP71&cid=SP1035
    Anybody know of some easy online tutorials?
    Or a little program that takes the pain out of it?
    I have explored
    http://www.plogger.org/ ... and
    Photoshops automate web photo gallery.
    Not sure they are quite right for the job.

    Hello,
    The page you showed as an example of what you want to do is
    simple in layout
    only.
    What makes it work is very complex.
    It involves Server Side Language and a database. Essentially,
    an
    application.
    There is also a "back end", which is the administration part
    of the website
    where the client can add new products or photos, edit
    descriptions or
    prices, delete products, add stock, control shipping charges
    and so on.
    Take a look at webassist.com (their eCommerce suite) or
    Cartweaver.com for a
    solution..
    Check out Cartweaver's demo of the admin section for an
    example of what your
    client would need to update and maintain the store.
    Click around through the menu.
    http://www.cartweaver.com/demos/php/basic/cw3/Admin/
    Essentially, all the forms are for the client to add to or
    edit things in
    the database. Server Side Language defines how this works.
    To go back to the public side of the site,
    You need the list of products to show so people can click on
    one to get a
    "details" page with a bigger photo, more information, an add
    to cart button
    and so on.
    Briefly, VERY briefly, this is one way things happen:
    There is a menu list of products for sale on the home page of
    the site.
    This list comes from the database. It's in the database as
    the client used
    the admin section of the site to define what products he or
    she has.
    A Server Side Language (SSL) takes the information from the
    database, and
    "draws" the menu on the page.
    So, one of the products is rings.
    You click on "rings", in the menu and a "product page"
    displays.
    Again, the information on the products page comes from the
    database.
    Your client used the admin section of the site to enter all
    of the ring
    types into the database and to add photos.
    Now, when this page opens, the fact that you picked rings
    defines how this
    page is built dynamically.
    (There is not a separate page for all products..that would be
    insanely
    manual if there were a lot of products.)
    The SSL pulls all the ring names and short descriptions out
    of the database,
    and builds a table on the page big enough to hold
    the number of rings. It inserts the link to each ring's image
    into each
    cell, so the image will display on the page.
    It then adds a link to each cell, so the user can click on
    that and get more
    details about the ring.
    Now, you click on a certain ring.
    A "details" page opens.
    Information about this specific ring is gathered from the
    database and drawn
    onto the details page.
    A bigger picture, a long description, an add to cart
    button.....
    Again, there is not a different page for each product. There
    is 1 details
    page, and the SSL creates the page dynamically (on the fly)
    based on which
    product someone wanted more info on.
    Lastly, you want this ring.
    You click on the "Add to Cart" button.
    A cart view opens showing what is in the cart.
    This, too, is built by the SSL using the database.
    You can proceed to checkout, or continue shopping and add
    more things to the
    cart.
    It is complex.
    Luckily, applications like Cartweaver and Webassist can do
    most of the work
    for you.
    They build the admin section and all the dynamic pages.
    You just "style" things to match your site.
    You will need to get familiar with setting up a testing
    server on your
    computer, as you can't test SSL pages locally without one.
    I know Cartweaver comes with great instructions on how to do
    this.
    I would assume WebAssist does as well, I've heard their
    support is great.
    Time to start reading!
    Take care,
    Tim
    "Astro Boi" <[email protected]> wrote in
    message
    news:[email protected]...
    > After a steep learning curve, and help from the forum, I
    have my clients
    > new
    > site up:
    > www.entwyne.com
    >
    > Next step is to fill the product pages.... I need to
    create an online
    > shop...
    > The hard part is making it so my client can update, ad
    new products and
    > include a Paypal button.
    > I want to do something simple like this:
    >
    http://www.mariecristine.com/?&mp=Default&class=inventory&id=SP71&cid=SP1035
    >
    > Anybody know of some easy online tutorials?
    > Or a little program that takes the pain out of it?
    >
    > I have explored
    http://www.plogger.org/ ... and
    Photoshops automate web
    > photo
    > gallery.
    > Not sure they are quite right for the job.
    >
    >
    >

  • In IMovie 11 the viewable area of the screen shrinks when placed in project editing. How do I keep this from happening?

    In IMovie 11the viewable area of the screen shrinks when placed in the project editing area.  How do I keep this from happening?  Thanks

    Mine doesn't show anything in the CSS Designer panel when I make a selection in Code Vew. It will only pop up the css set for a given element if I select that element in Design View first. If I drill down using the Sources and Selectors sub windows in the CSS Designer panel itself, it works the same in both. I pretty much never use it, but it doesn't do what you're explaining in my version of DWCC, so I'd guess you may have some slight corruption in the program.
    Unless, does it make a difference if you have Live View turned on or not?
    You could try clearing the program cache/personal config folder: Deleting a corrupted cache file
    Or restoring preferences if the cache doesn't do the trick: Restore preferences | Dreamweaver CS4, CS5, CS5.5, CS6http://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs4-cs5.html

  • BC online shop tables not divs?

    Hi everyone,
    I am making a bc template from scratch to learn how to work with bc. I am making a online shop and bc displays the products in tables
    <table class="productTable productSmall"><tbody><tr><td id="catProdTd_9019550" class="productItem">
      <div class="shop-product-small clear">  <h5><a href="/red-wine/sample-product-1">Sample product 1</a></h5>  <div class="image"><a href="/red-wine/sample-product-1"><img id="catsproduct_9019550" src="/images/Catalogs/Redwine/bottle_thumb.jpg" alt="Sample product 1" border="0"></a></div>  <ul>  <li class="price">Price: <strong>€25,00</strong> </li>  <li class="stock">In stock: <strong>15</strong> </li>  <li class="quantity">Qty: <strong><input id="Units_9019550" class="productTextInput" name="AddToCart_Amount" type="text" value="1"></strong> <input class="productSubmitInput" name="AddToCart_Submit" type="submit" value="Add to Cart" onclick="AddToCart(296732,9019550,'',3,'','',false);return false;"></li>  </ul>  </div>   
    </td><td id="catProdTd_9019582" class="productItem">
      ..some more code...
    </td><td id="catProdTd_9019566" class="productItem">
      <div class="shop-product-small clear">  <h5><a href="/red-wine/sample-product-5">Sample product 5</a></h5>  <div class="image"><a href="/red-wine/sample-product-5"><img id="catsproduct_9019566" src="/images/Catalogs/Redwine/ValpolicellaTrim_thumb.jpg" alt="Sample product 5" border="0"></a></div>  <ul>  <li class="price">Price: <strong>€45,00</strong> </li>  <li class="stock">In stock: <strong>15</strong> </li>  <li class="quantity">Qty: <strong><input id="Units_9019566" class="productTextInput" name="AddToCart_Amount" type="text" value="1"></strong> <input class="productSubmitInput" name="AddToCart_Submit" type="submit" value="Add to Cart" onclick="AddToCart(296732,9019566,'',3,'','',false);return false;"></li>  </ul>  </div>   
    </td><td class="productItem"></td><td class="productItem"></td></tr></tbody></table>
    I would like to know how can i make this a responsive product display.here is my template if you wanna check it out:Red wine

    Hi Adam,
    ok so i have to change to useli but were can i find that layout page, i can only see in the module templates overall layout, individual catalog, individual product, etc
    this is the over all module template:
    "You are here: {tag_cataloguebreadcrumbs} 
    {module_shoppingcartsummary,horizontal}
    {tag_cataloguelist,4} {tag_productlist,4}
    {tag_previouspage,} {tag_nextpage,}
    {tag_pagination}"
    This is the individual product small:
    {tag_name}
    {tag_smallimage}
    Price: {tag_saleprice}
    In stock: {tag_instock}
    Qty: {tag_addtocartinputfield} {tag_addtocart}"

  • Does dreamweaver have drag & drop templates for creating online shopping websites?

    Does dreamweaver have drag & drop templates for creating online shopping websites?

    How many products are you planning to sell?
    Do you need a lot of varying versions like colors, sizes etc. ?
    Paypal offers a very simple payment gateway, without your needing to get involved with learning server side Scripting and and databases. Their tech support is superb.
    https://www.paypal.com/us/webapps/mpp/accept-payments-online

Maybe you are looking for