Need help with automatic resizing of images

I am working with a liquid template in dreamweaver and when I insert my banner image and preview the page, the image stays the same size while the page template expands with the screen resolution.
How can I set the image so it automatically expands with the page?

Expanding an image in this way isn't really the best way of doing things, because depending on the image it can get very distorted when it's increased or decreased in size.  You are better off selecting a background colour and blending the image into that, so that when the browser window is increased you see the majority of the image, but on larger monitors, the image is blending into the background on either side of that image.
There is a technique that may make this possible - I did read something about it at one point, but didn't save the URL.  However, the above method is probably the most reliable way of doing what you want.

Similar Messages

  • Need help with full screen slideshow image quality

    I am looking to display some images with full screen slideshow. The images I add are very large, over 5000 wide. When I publish the site some images retain their quality while others lose it and look like crap. Why would this be and how can I fix it. I tried to resize them to the 2560x1707 that muse does, and then add them. This doesn't change the end result of poor quality.

    Go to Assets Panel and locate the image you want to use at original size. Right click the image and chose 'Import Larger Size'.
    See if that helps retain quality for that image, since Muse does not resize/interpolate that image for you.
    Cheers,
    Vikas

  • New to Photoshop (CS4Ext) and need help with basic loading of images to new folder.

    Just purchased CS4Ext and installed it. It's not showing up on my desktop as a quick entry icon. I want to simply load images from a portable hard drive (USB) to a new folder in photoshop so I can review them and begin to select  and separate out some of interest to manipulate  and share or get ready to print. It 's the most basic help one can need butI'm jut not clear on the workflow steps . Would appreciate someone walking me through the steps .
    Thanks much

    drmjp2 wrote:
    Just purchased CS4Ext and installed it. It's not showing up on my desktop as a quick entry icon.
    Let's see…   First of all, this is the Photoshop Macintosh forum.  Installed applications never, ever show up on your desktop as a "quick entry" icon on a Mac.  Are you on a Windows PC maybe?
    drmjp2 wrote:
    I want to simply load images from a portable hard drive (USB) to a new folder in photoshop so I can review them and begin to select  and separate out some of interest to manipulate  and share or get ready to print.
    Just select them with your mouse in the Finder and drag-copy them into the new folder.  Done.

  • I need help with searching for an image inside another image

    I need to write a program that checks for a specific image (a jpg) inside another, larger, image (a jpg). If so, it returns a value of true. Can anyone help me?
    Winner takes all. First person to solve this gets 10 dukes.
    Please help.

    Hi,
    I would use a full screen image Sequence made with png for transparency and put your article behind. no auto play, stop at first and last image. and information for swipe to display article.

  • Need Help with Problem Batch Rotating Images in iPhoto 8!

    Hello, recently I have been having a lot of problems with pic files becoming unusable once I batch rotate them in iPhoto 8, so now I want to rotate the pictures 180º before I import them into iPhoto. Is there a free program out there that can help me do this without losing any picture quality. I REALLY don't want to have to individually open up over 2000 photos in Preview and individually rotate them that way.
    Does this same batch rotating problem occur in Aperture 1.5.6?
    TIA for ANY and ALL help!!!

    You can create an Automator workflow application to batch rotate a folder of photos 180 degrees. You need to download and install GraphicConverter first. You can use it in the demo mode by first opening it before you drop your folder of photos onto the application .
    When you install GC select the option to install the GC Automator workflows. Open Automator and put in the following elements: 1 - Get Finder Items; 2 - Rotate. You can select to use Quicktime or the internal algorithm. Save it as an application.
    This all must be done outside of iPhoto and then import into iPhoto.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.
    Message was edited by: Old Toad

  • Need help with automatic slideshow

    I made an automatic slideshow that switches frames at a set
    interval but now i want to load each frame from an extrenal swf and
    add a preloader for each frame, how do i tell the slideshow to wait
    until the frame is loaded before it proceeds to the next frame, but
    still have the movieclip be automatic. Also the slideshow can be
    controlled mannually so i also want to know how to disable the
    manual control till each frame is loaded.

    Here is some of the action script for the slideshow.
    This first bit sets up the automatic interval transitions in
    the main movie timeline
    function nextImage()
    mc_slide.mc_transition.play();
    } // End of the function
    function waitImage()
    clearInterval(slideTimer);
    var slideTimer = setInterval(nextImage, timer * 1000);
    nextImage();
    } // End of the function
    function pauseSlide()
    mc_slide.mc_quicktransition.gotoAndPlay(2);
    } // End of the function
    var timer = 8;
    var pauseTime = 20;
    var slideTimer = setInterval(nextImage, timer * 2000);
    stop ();
    the movieclip loaders that load each movie clip are embedded
    with the transition animation.
    this is the code in the embedded mc-it loads the 1st movie
    clip and allows the user to manually jump to any of the other movie
    clips.
    emptyMC.loadMovie("frame1.swf");
    var pageAddress = "about:blank";
    btn1.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(1);
    btn2.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(2);
    btn3.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(3);
    btn4.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(4);
    stop();
    I need to know how to put the code for the automation of the
    slideshow pause until each movieclip has finished loading and also
    at the same time disable the manual control of the movie clips
    before they are fully loaded.

  • Need help with Automatic Generating Form Numbers

    Hello,
    I am new to all this and have found myself stuck trying to figure out how to have my forms automatiacally generate a new number each time it is used. I tried looking through similar posts but do not understand the directions given there. If someone could help me figure this out I would really appreciate it. Thank you.

    Before opening my forms for responses I am creating a column with my starting form number - 1.  in the cell above(first response) I am setting an equation =B2 +1.  All incoming responses automatically generate an ID number within my responses table.  The form itself will not present the number, but if you were looking for an easy way to track responses w/ an ID it has worked well for me so far.

  • Need help with Elements loading RAW images since I switched cameras.

    I recently switched from a Canon Rebel XT to a Canon Rebel T1i. I have Elements 6.0 and was able to see RAW images with my old camera. For some reason the RAW images aren't loading in Elements now. I get a message saying the files are corrupt. I've tried different cards but still no difference. Any suggestions?

    Please read this TechNote:-
    http://kb2.adobe.com/cps/407/kb407110.html
    It shows at:-
    http://kb2.adobe.com/cps/407/kb407111.html
    you need at least ACR 5.4 for your T1i/500D
    ACR 5.6 and therefore earlier versions work on PSE 6.
    You should upgrade your PSE 6 to ACR 5.6; it does work on PSE 6 at least in WIndows. I know because ACR 5.6 works on my PSE 6 under Windows Vista.

  • Need help with automatic page when a box is filled with a letter

    I use the Adobe Livecycle Designer 8.0, version 8.0.1291.1.339988.
    I'm trying to make a test for cars in Livecycle, where the car is tested and then there should be a box after every kind of test such as: Brakes front, brakes back, parking brakes, lights, engine, oillevel, exhaust system, clutch and so on..
    When a specific letter is written in the box a page should pop-up where the tester can write what the problem is. And then afterwards continune with the rest of the test.
    In the box, there should be four choices, a G, R and A. When there's a G there shouldn't pop-up a page, because that part is fine. But when there's a R (reparation) and an A (remark), this page should pop-up with the text of what part of the car it is and a text-field where the mechanic that tests the car can write what needs reparing or what's a remark.
    Can anyone help me? I really would appriciate it!
    Jacob Langer

    To support what King_Penguin has provided, here is a support document that describes the steps to take with a device in Recovery Mode. If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

  • Need help with automatic printing of a page

    I am looking for inputs for a particular scenario; On the Oracle HR Self-service pages, once the employee adds/updates his personal details and submits his changes to be approved by the HR manager, the final confirmation page should be automatically routed to a particular printer and be printed. Can this functionality be achieved with OAF coding for the Submit button?

    Hi,
    Check this link, it will help you.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/collaboration">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/collaboration</a>
    Dont forget to close the thread when answered.
    Regards,
    Amit

  • Need help with column formatting (see image)

    I am trying to make a spreadsheet that calculates proportional image sizes of a fixed original size. I have it set up so you enter an original size on the left (see image below) and the spreadsheet calculates the proportional sizes on the right (in the pink column). I would like to know how to get Appleworks to re-list the proportional sizes while omitting the size pairs that = 0. Basically i want to display the proportional sizes in a new column without the zeros. This way the proportional sizes list is much smaller and easier to read.
    Thanks for any help
    morgan
    g5   Mac OS X (10.4)  
    g5   Mac OS X (10.4)  
    g5   Mac OS X (10.4)  

    Part 2
    The method indicated in your original spreadsheet, and after the refinements suggested earlier, is essentially a sieve—calculate all the values, then strain out the chaff (ie. the results with non-integer values for one or both dimensions).
    A more efficient approach is to calculate and display only the cases where both dimensions are integers.
    Here's one way. You may want to move some of the calculations and revise the formulas accordingly.
    Data Entry:
    Cells B4 and C4 are used for data entry, as in the original.
    Initial calculation: Find the LCF (largest common factor) Columns J, K, L and cell M1.
    J1: =(B$4/ROW())=INT(B$4/ROW())
    K1: =(C$4/ROW())=INT(C$4/ROW())
    L1: =IF(J1+K1=2,ROW(),"")
    Fill these three columns down to the largest short side dimension you expect to use (ie. if you'll use 39 x 78 inch original images, fill down to row 39).
    What the formulas do:
    J1: The ROW() function returns the number of the row in which the formula is located. B$4/ROW() divides the number in B4 by the number of the row. INT(B$4/ROW()) does the same division, then strips off any fractional part of the result. The second = sign is a comparison operator. The formula compares the results of the parts on each side of the sign and, if they are equal, returns TRUE (or 1), and if they are not equal, returns FALSE (or 0).
    For the example (6), the formula would return TRUE in rows 1, 2, 3 and 6, marking the four factors of 6.
    K1: Does the same, but for the number in C4.
    For the example (8), the formula returns TRUE in rows 1, 2, 4 and 8, marking the four factors of 8.
    L1: This IF() formula checks for common factors. If the cells in both columns (J and K) in a particular row contain TRUE (ie. the number of that row is a factor of both the number in B4 and the number in C4), then the sum of the two cells will be 2 (TRUE=1, FALSE=0, TRUE + TRUE = 2), and the formula will return the result of the ROW() function (ie. the number of the row). For any other result, the formula will return 'empty' (ie. what's between the two double quotes "" ).
    For the example, cells L1 and L2 will contain 1 and 2 respectively; the rest of the cells in column L will be empty.
    M1: =MAX(L1..L39)
    M1: This formula completes the search by picking off and returning the greatest number in column L, or the Largest Common Factor for the two numbers. Adjust the second cell reference in the formula to reflect the largest original image size you'll use.
    Final Calculations
    D4: =B$4/$M$1*(ROW()-3)
    E4: =C$4/$M$1*(ROW()-3)
    D4: The formula divides the number in B4 by the LCF determined above to determine the size increment that will give integer results for both dimensions of the final image(s). It then multiplies that increment by 1 in row 4, by 2 in row 5, by 3 in row 6, and so on, for as many rows as you wish. The -3 in the second part of the formula is an offset to make the value of the multiplier three less than the row in which the formula is located.
    E4: Same formula, but acting on the number in C4.
    The first five results for the example ( 6 and 8) are:
    3 4
    6 8
    9 12
    12 16
    15 20
    and for a 4 x 6 initial image:
    2 3
    4 6
    6 9
    8 12
    10 15
    Regards,
    Barry

  • Need help with the hover over images from small to bigger

    I read the tutorial about the hover over the small image shows a bigger image. I thought I would try it own my own but it did not work, do I need to make a link to the CSS file or do I need to do something different. Please help

    Here is the tutorial link:
    http://www.dreamweaverclub.com/dreamweaver-show-larger-image.php
    This is a pure CSS Image Swap without the need for JavaScript behaviors.
    It places the thumbnail image on a page with a "nolink" link or anchor so the  CSS hover rule can invoke the appearance of the larger  image inside  an absolutely positioned division (APDiv) layer.
    Paste the CSS code into the top of your page between the <head> and </head> tags.
    <style type="text/css">
    /**image to large**/
    #picture {width:100px; height: 250px; background-color:#ffffff;}
    #picture a.small, #picture a.small:visited { display:block; width:100px; height:100px; text-decoration:none; background:#ffffff; top:0; left:0; border:0;}
    #picture a img {border:0;}
    #picture a.small:hover {text-decoration:none; background-color:#000000; color:#000000;}
    #picture a .large {display:block; position:absolute; width:0; height:0; border:0; top:0; left:0;}
    #picture a.small:hover .large {display:block; position:absolute; top: 90px; left:150px; width:200px; height:200px; }
    </style>
    Paste the HTML code between the <body> and </body> tags:
    <div id="picture">
    <a class="small" href="#nogo" title="small image"><img src="small-image.jpg" width="125" height="83" title="small image" />
    <img class="large" src="large-image.jpg" title="large image" /></a>
    </div> <!--end picture-->
    Change small-image.jpg and large-image.jpg to your own.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Need help with a scrolling background image

    I've got a 800x600 document that has a panoramic picture scrolling horizontally and buttons in the image.
    i've got this piece of code for AS2.0
    _global.plotis = Stage.width;
    centre._x = _global.plotis / 2;
    speed = 40;
    full._y = 0;
    this.onEnterFrame = function(){   
        if(_xmouse<300 || _xmouse>500){
        var A:Boolean = false;
        var X = _xmouse - _global.plotis / 2;
        full._x += -X / speed;
        if (full._x >= 0) {
            full._x = 0;
        if (full._x <= -(full._width - _global.plotis)) {
            full._x = -(full._width - _global.plotis);
    Otherwise it is working all good, but I'd like it to stay put at the start. Right now it immidiately starts scrolling to right unless I move the mouse on top to stop it. So ye, i need to have it sitting still and only scroll when the mouse is at the edges of the document...
    Cheers,
    PK

    use:
    _global.plotis = Stage.width;
    centre._x = _global.plotis / 2;
    speed = 40;
    full._y = 0;
    this.onMouseMove=function(){
    delete this.onMouseMove;
    this.onEnterFrame = function(){   
        if(_xmouse<300 || _xmouse>500){
        var A:Boolean = false;
        var X = _xmouse - _global.plotis / 2;
        full._x += -X / speed;
        if (full._x >= 0) {
            full._x = 0;
        if (full._x <= -(full._width - _global.plotis)) {
            full._x = -(full._width - _global.plotis);

  • I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    You mean an image such as a scanned document?
    If that is the case, the file doesn't contain any text for Reader Out Loud to read. In order to fix that, you would need an application such as Adobe Acrobat that does Optical Character Recognition to convert the images to actual text.
    You can also try to export the file as a Word document or something else using ExportPDF which I believe offers OCR and is cheaper than Acrobat.

  • Problem with photoshop automatically resizing placed images

    Hi,
    I have PS6. I have images that are 144x100 px. When I use file>place ps resizes the image to 108x75. I can't figure out how to make ps quit resizing my pictures. Anybody know?
    Thanks

    When Pasting, Dragging, copying and placing an image Photoshop will copy all of the image being duplicated original pixels to preserve the image pixel quality the image quality.  If the receiving document has a different DPI resolution the image may look a different size in the  receiving documents because of the number of pixels added to the document that has a lower or higher dpi resolution.  If the image is being placed in if the image pixels exceeds the receiving documents canvas size. Photoshop may scale the smart object layer to fit within the canvas that depends on the users Photoshop's preference.  All of the images original pixels are still there in the embedded object.   In my Photoshop Collage Scripts  I always transform all placed images to 100% size  incase Photoshop scaled the placed image.  For you can not get the scale percent Photoshop used.  Once I know I have the image at 100% size I can use the layer bounds to get the actual number of pixels there are in the placed image.  Once I know that I can calculate the scale I need to use to resize the image to fit the area being populated in the collage template.   Once resized I center it into place and mask off any excess image pixels.

Maybe you are looking for

  • Changed setting per suggestions, updated, unplugged then replugged and still NADA, no sound!  Argh, so frustrating.

    I've tried all of the setting changes noted in others help questions regarding the no sound issue with Apple TV but still no sound.  Am I missing something?  And considering this is an apple product I don't think I should by adapters for my TV to tra

  • ITunes 10 clicking on column heading bug?

    I really hope this is a bug - but clicking on a column heading (Rating, Name Artist etc.) doesn't work properly. Clicking on a column heading is meant to sort that column from top to bottom, and takes your view to the top or the bottom of that column

  • Export to pdf - mask is still selectable

    hello i've the problem that an image i placed and then exported artwork is still fully selectable in acrobat. is there a way to apply the mask finally? thx chris

  • Specialization in SAP

    Hi,         I'm working as an abap devolper, i would like to chose a specilization in sap . which module is good for an abaper CRM , BI/BW , XI/PI etc. and scopes of the areas. Give me some suggestion. Regadrs, Binoy R

  • 9800 Torch - Keyboard and buttons not functioning

    I have had a torch since October 2010 and just in the last 2 days it has stopped responding when using the keyboard or buttons. When I pull the battery and reboot, I can use the touch screen to unlock, and then can go in to any item.  Example:  open