How I resized the Small Image for a Product Module

I wanted a big picture for my small product module.
1. I inserted {tag_largeimage} in place of {tag_smallimage} on the small product module.
Site Manager -> Module Templates -> Online Shop -> Individual Product Small.
The picture was 200 X 275. It was getting cut off.
2. I open File Manager -> CSS and look in style.css for numbers smaller than those dimensions.
At the bottom, at lines 1594/1595 I found what I was looking for: "#content .shop-product-small .image".
3. I increased the dimensions to 200*275. If your site is automatically generating a border you'll need to include them in the final dimensions.
The customer gets a better view of what I'm selling. I'm happy with the result. I hope this helps.

Hi Steve,
You should just use the large product image, use _path to get the raw URL of the image and use the tumbnail generation code (see knowledgebase) and specify your dimensions. This allows you to use then properly use a large product image in your detail view

Similar Messages

  • I want to find out how to retrieve the serial number for my product. i can't find it in my email

    i want to find out how to retrieve the serial number for my product. i can't find it in my email

    Find your serial number quickly

  • How to find the data flow for a given module.

    Hi ,
    Is there a way to find the data flow for a given module(Example AR,AP,......).
    I mean are there any predefined document other than user guides that explains with data flow diagrams(including the tables involved).
    Any help would be greatly appreciated.
    Thanks & Regards,
    Naveen.

    No such public document available from Oracle unless from Oracle Education.
    for some specific operation you can check Process tab inside Oracle Application which shows the data flow as part for workflow process.
    Regards
    Prashant Pathak

  • How to do the background image for a site

    Hi.
    First, thanks for reading this.
    I'm planning on using a gradient image as a background on a new site with black on the sides gradiating to blue in the middle which I created in Photoshop. The site is designed for 1024 (955) and up. How would I handle the background image so that no matter what the resolution above 1024, the visitor will see the gradient properly, meaning the blue will always be exactly in the center of the page and the image does not tile horizontally? (I don't want it to repeate from left to right when someone's resolution is really high)
    I have seen a couple of sites that use solid images that appear to stretch the background image depending on the resolution, but have not been able to figure out the CSS code. In my case, I can have a single image that's say 5 pixels high, whatever width I need for the maximum (reasonable) resolution, and let it repeat from top to bottom.
    Thank you.
    MFitz721

    Thanks for your reply, SnakEyez02 .
    Another concern is wide-spread compatablilty on the largest number of browsers and PDAs possible, so it sounds like using the method you suggested would not be an option. What would you say is my next best option? Should I just design it for 1024 pixels wide (or perhaps 1440) and let what happens happen?
    Thanks again.
    Fitz21

  • How to resize the TIFF image in JAI

    public static final void appendImage(String fileName, Document doc, PdfWriter writer)
    throws Exception {
    try {
    /* using the Java Advanced Imaging API to deal with tiffs */
    if ( ImageUtil.isTif(fileName) ) {
    LOG.debug("We are dealing with a tiff ...");
    File file = new File(fileName);
    SeekableStream s = new FileSeekableStream(file);
    ImageDecoder dec = ImageCodec.createImageDecoder("tiff", s, null);
    System.out.println("Number of images in this TIFF: " + dec.getNumPages());
    PdfContentByte cb = writer.getDirectContent();
    for (int k = 0; k < dec.getNumPages(); ++k) {
    RenderedImage ri = dec.decodeAsRenderedImage(k);
    Raster ra = ri.getData();
    BufferedImage bi = new BufferedImage(ri.getColorModel(),Raster.createWritableRaster(ri.getSampleModel(), ra.getDataBuffer(), null), false, new Hashtable());
              LOG.debug("The Buffered Image is :" + bi);
    Image img = Image.getInstance(bi, null, true);
              //Sreenivas added for Oregon
              img.rawData();
              LOG.debug("The RawData is:");
              img.scaledHeight();
              LOG.debug("The rheight:");
              img.scaledWidth();
    LOG.debug("The rwidth is:");
              //Sreenivas Ended
    img.scalePercent(36);
              LOG.debug("The Scale Percent is:" + img);
              float y = doc.top() - img.scaledHeight();
              //float x = doc.top() - img.scaledWidth();//Sreenivas added for Oregon
    img.setAbsolutePosition(0, y);
    LOG.debug("Top Position..."+ y );
    doc.newPage();
    cb.addImage(img);
    /* the Toolkit can handle GIF, JPEG or PNG. */
    else {
    java.awt.Image coreImage = Toolkit.getDefaultToolkit().createImage(fileName);
    Image image = Image.getInstance(coreImage, null);
    image.setAbsolutePosition(0, 0);
    doc.newPage();
    doc.add(image);
    LOG.debug("Added image "+fileName);
    catch (Throwable t) {
    LOG.error(t);
    doc.add(new Chunk(t.getMessage()));
    I have written like this.. Image has been display,but it cutting

    public static final void appendImage(String fileName,
    Document doc, PdfWriter writer)
    throws Exception {
    try {
    /* using the Java Advanced Imaging API to deal
    o deal with tiffs */
    if ( ImageUtil.isTif(fileName) ) {
    LOG.debug("We are dealing with a tiff ...");
    File file = new File(fileName);
    SeekableStream s = new
    s = new FileSeekableStream(file);
    ImageDecoder dec =
    er dec = ImageCodec.createImageDecoder("tiff", s,
    null);
    System.out.println("Number of images in this
    in this TIFF: " + dec.getNumPages());
    PdfContentByte cb =
    yte cb = writer.getDirectContent();
    for (int k = 0; k < dec.getNumPages(); ++k)
    (); ++k) {
    RenderedImage ri =
    Image ri = dec.decodeAsRenderedImage(k);
    Raster ra = ri.getData();
    BufferedImage bi = new
    e bi = new
    BufferedImage(ri.getColorModel(),Raster.createWritable
    Raster(ri.getSampleModel(), ra.getDataBuffer(),
    null), false, new Hashtable());
              LOG.debug("The Buffered Image is :" + bi);
    Image img = Image.getInstance(bi, null,
    (bi, null, true);
              //Sreenivas added for Oregon
              img.rawData();
              LOG.debug("The RawData is:");
              img.scaledHeight();
              LOG.debug("The rheight:");
              img.scaledWidth();
    LOG.debug("The rwidth is:");
              //Sreenivas Ended
    img.scalePercent(36);
              LOG.debug("The Scale Percent is:" + img);
              float y = doc.top() - img.scaledHeight();
    //float x = doc.top() -
    () - img.scaledWidth();//Sreenivas added for Oregon
    img.setAbsolutePosition(0, y);
    LOG.debug("Top Position..."+ y );
    doc.newPage();
    cb.addImage(img);
    /* the Toolkit can handle GIF, JPEG or PNG. */
    else {
    java.awt.Image coreImage =
    eImage =
    Toolkit.getDefaultToolkit().createImage(fileName);
    Image image = Image.getInstance(coreImage,
    reImage, null);
    image.setAbsolutePosition(0, 0);
    doc.newPage();
    doc.add(image);
    LOG.debug("Added image "+fileName);
    catch (Throwable t) {
    LOG.error(t);
    doc.add(new Chunk(t.getMessage()));
    I have written like this.. Image has been
    display,but it cutting,pls some body help me..i will be very happy..Thank u lot

  • How to get the confirmation slip for a production order

    Hi experts,
      Can anybody tell me how to find out the confirmation slip for a given production order?
    Is there any standard BAPI/Function module which generates the confirmation slip?
    Please help me out.
    Thanks in advance.
    Regards
    Sireesha.

    Check
    <b>BAPI_PRODORDCONF_CREATE_ACT</b>
    CALL FUNCTION 'BAPI_PRODORDCONF_CREATE_ACT'     
       EXPORTING                                     
         POST_WRONG_ENTRIES = POSTWRONGENTRIES       
       IMPORTING                                     
         RETURN = RETURN                             
       TABLES                                        
         ACTIVITIES = ACTIVITIES                     
         DETAIL_RETURN = DETAILRETURN                
       EXCEPTIONS                                    
         OTHERS = 01.                                
    Regards,
    Santosh

  • How can I add the logo image for a single item in an RSS feed?

    Hello,
    I am an administrator of iTunes U at the University of Minnesota.
    Before transitioning new public site, we are trying to figure out how to put a logo image into RSS feeds.
    We use our server to makes xml codes to create RSS feeds for podcasts.
    We successfully put a logo image for a collection in a RSS feed, but putting a logo image for a single item did not work.
    Below is the part of the xml code for the logo image for a single item, which is created by our server. I deleted other parts of xml code for your convenience.
    <item>
    <title>Plagiarism</title>
    <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" />
    <enclosure url="http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3" length="8544508" type="audio/x-mp3" />
    <guid>http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3</guid>
    <image></image>
    </item>
    We tried both <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" /> or <image>http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimming-conta st.jpg</image>.
    Both did not work.
    Can anyone help?
    Thank you for your help in advance!!
    Seogjoo

    Haven't created too many podcasts, but in this one
    http://itunes.apple.com/us/podcast/connecticut-college-sculpture/id372414245
    or
    itpc://video.conncoll.edu/d/sculptures/index.xml
    before we included the audio files, we added the images in iTunes.
    Select the file, then go to File>Get Info, here you can add metadata, and in Artwork add an image.
    Then upload this file to your server. Works for audio files anyways.
    You don't see the image in the web podcast, but you do in iTunes after you download each item, in "Show item artwork" in lower left. Click on the image and it zooms out.

  • Using the value "Image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of preconfigured file types (.jpe, .jpg, .jpeg, .?

    On a form, using the value "image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of pre-configured file types (.jpe, .jpg, .jpeg, .gif, .png, .bmp, .ico, .svg, .svgz, .tif, .tiff, .ai, .drw, .pct, .psp, .xcf, .psd, .raw)?
    Say I wanted to add .gif, .jfif or .ico. I find this array limited, how can I add types to image?
    <input type="file" name="file" accept="image/*" id="file" />
    mimeTypes.rdf does not seem to allow this.

    ''mimeTypes.rdf'' has nothing to do with web development. It's a file that stores your file handling preferences (e.g. if you want ZIP files automatically saved or opened).
    You can't change the file types of the pre-defined content specifiers (audio/*, video/*, image/*), but you can specify additional MIME types. To add PDF to your above example,
    <pre><nowiki><input type="file" name="file" accept="image/*,application/pdf" id="file" /></nowiki></pre>
    For details, see
    * [https://developer.mozilla.org/En/HTML/Element/Input developer.mozilla.org/En/HTML/Element/Input]

  • How can I set the desktop image for client computers?

    How can I set the desktop image for client computers using ARD or terminal?

    How can I set the desktop image for client computers using ARD or terminal?

  • How do you show thumbnail images for the contacts?

    How do you show thumbnail images for the contacts on the iPod?
    -Thank You

    In another thread I posted a suggestion to try when the iPhoto app in the Application folder will not work:
    after upgrading the OS, iPhotos (and Aperture for that matter) should still be in the Applications folder...
    And running well in 10.10.3.
    If it stops running in a next "update" do not throw it away: most apps will continue running as follows:
    In the Applications folder "rightclick" (CTL+click) the iPhoto app, then "show package contents", then click the MacOs folder open: you see the real app (dark grey), rightclick this and choose "make alias", an alias is made, move this alias to the Applications folder and use it to run iPhoto.
    Same for Aperture.
    In older OS this survived several upgrades....
    Lex

  • Guys, i want to ask on how to resize the images into 1200 pixels wide?

    Guys, i want to ask on how to resize the images into 1200 pixels wide, how to do it? and what are the step by steps on doing that? thank you!!!

    See this link: http://forums.adobe.com/docs/DOC-3691

  • Replaced HD yesterday  Was able to restore from Time Machine Now, it won't back up to Time Machine.  I removed the TM and tried to add it- the error is "The disk image for "computername.sparsebundle" is in use.  Try ejecting the disk image - How do I do?

    Replaced HD yesterday  Was able to restore from Time Machine Now, it won't back up to Time Machine.  I removed the TM and tried to add it- the error is "The disk image for "computername.sparsebundle" is in use.  Try ejecting the disk image - How do I do?

    Hello jfilbey,
    Thanks for using Apple Support Communities.
    Power cycle the disk Time Machine is backing up to.
    For more information on this, take a look at:
    Time Machine: Troubleshooting backup issues
    http://support.apple.com/kb/HT3275?viewlocale=en_US&locale=en_US
    Best of luck,
    Mario

  • Filter plugin and resize the output image

    I had write a filter plugin for photoshop.
    But i have a prolem.
    I dont know how i can resize the output image,
    i need clip just last 3 pixel of a only side of an image.
    I had read API but I'have not found what I looking.
    Thank you in advance

    I think it is impossible edit the size of the output image with a filter plugin.....but i'm not sure, so i prefer ask to you developer.
    I think is it possible with an other way.
    An other similar question: is possible put visible the padding pixel in the output image?

  • How to revert the maintainence image from 2.1(5) to 2.1(3) on NAM2 Module.

    Hi,
    Could some one please help me with the procedure or document on how to revert the maintainence image from 2.1(5) to 2.1(3) on NAM2 Module/
    As I am trying to upgrade the 4.0 software version on the nam.
    Thanks in advance.
    Regards
    Alex.

    I follwed this note only (Deploying Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite 11i [ID 290807.1]) to upgrade my Jre -1.6.0_23 version .Use the same steps to downgrade to 1.6.0_20 (i.e. download the correct plug-in, issue "txkSetPlugin.sh jversion" with the desired version, ..etc).
    I given it to application team for testing they come back with some issues telling that some application and users unable to access so requesting to downgrade the JRE to 1.6.0_20 version.What issues? Have you considered upgrading to 1.6.0_24?
    Mismanaged Session Cookie Issue Fixed for EBS in JRE 1.6.0_23
    http://blogs.oracle.com/stevenChan/2010/12/mismanaged_session_cookie_issue_fixed_ebs.html
    Is it possible to downgrade ? Try the above, or restore from a backup (if you have one) which is taken before upgrading to 1.6.0_23
    Thanks,
    Hussein

  • How to reset the factory defaults for Adobe Photoshop CS4? [was:need assistance]

    How to reset the factory defaults for Adobe Photoshop, CS4.  My 'image size' box is not quite right. Thank you.

    How to delete/reset Photoshop preferences
    Preference file functions, names, locations | Photoshop CS4
    To reset within the Image Size dialog press Alt (Option on Mac) and click Reset.

Maybe you are looking for

  • How to find largest number from text file

    I am using the "Read from text file" block to read the data from my .txt file into labview.  It is now in string format.  I have many numbers in the file.   For example: 0.45 0.35 0.12 1.354 1.56 2.89 5.89 0.56 That is what a text file might look lik

  • How to config Free goods process like rebate

    Dear Masters, I have a problem like this: Our customer want using free goods by accrual sales volume. If in a period, sales volume can have exp 1000 m3, buyer will get a free goods. But as I know SAP std does not support like this! Is there anyway to

  • Doubt in Multi mapping

    Hi Suppose i want 1:2 transformation. Both the destinations are of the same type. (say two database tables have to be updated int he receiver end, ) 1. I can create one business service with two receiver interfaces. And go for multimapping. or 2. I c

  • Xcode 4.4 autosave in Mountain Lion

    Unless I am missing something Xcode 4.4. does not honor the newly Ask to Keep Changes When Closing Document (aka autosave/revert feature) in Preferences > General. However it works for things like Textedit and Preview.  Does anyone know if it works o

  • Tranforming xml in struts giving exception

    Hi, I am using ajax with struts. I have to transform xml into html using xsl stylesheet at server side and send the response to the client. I am using Transformer for the xml transformation. The whole transformation works fine in a simple java applic