I need to create combinations of text and images for the web. How to do this in elements or do I need Photoshop for this feature?

I need to create combinations of text and images for the web. How to do this in elements or do I need Photoshop for this feature?  Please advise!

slynn5236 wrote:

I need to create combinations of text and images for the web. How to do this in elements or do I need Photoshop for this feature?  Please advise!

You can do in PSE.

  1. Do the math to see how much space you'll need on your canvas to the image and text.
  2. Navigate to the file queue > new.blank. Enter the width & height, background color, resolution 72 px / in. It is your canvas, and in the layers palette will be the background layer.
  3. Copy and paste the image. It turns on a separate layer
  4. Activate the tool move, position the image and resize if necessary
  5. Activate the text tool, and then type your text. It will be on a separate so layer
  6. Position the text.
  7. Flatten layers and go to file > save for web. I'm usually on the long side about 800 px. Don't forget to check "constrain proportions". Adjust the quality slider to suit. You will probably want the type of JPEG file for web work.

Tags: Photoshop

Similar Questions

  • dynamic load text and image of XML. How?

    Hello

    I have the following code to display text and images on the screen how modify the code to make it more dynamic:

    var xmlData:XML = new XML(MovieClip(this.parent).xmlDocs[3]);
    // Add Title
    rssNews.rss1.title1.text = xmlData.news[0].title;
    rssNews.rss2.title2.text = xmlData.news[1].title;
    rssNews.rss3.title3.text = xmlData.news[2].title;
    rssNews.rss4.title4.text = xmlData.news[3].title;
    rssNews.rss5.title5.text = xmlData.news[4].title;
    rssNews.rss6.title6.text = xmlData.news[5].title;
    rssNews.rss7.title7.text = xmlData.news[6].title;
    rssNews.rss8.title8.text = xmlData.news[7].title;
    rssNews.rss9.title9.text = xmlData.news[8].title;
    rssNews.rss10.title10.text = xmlData.news[9].title;
    
    
    // Add Description
    rssNews.rss1.text1.text = xmlData.news[0].description;
    rssNews.rss2.text2.text = xmlData.news[1].description;
    rssNews.rss3.text3.text = xmlData.news[2].description;
    rssNews.rss4.text4.text = xmlData.news[3].description;
    rssNews.rss5.text5.text = xmlData.news[4].description;
    rssNews.rss6.text6.text = xmlData.news[5].description;
    rssNews.rss7.text7.text = xmlData.news[6].description;
    rssNews.rss8.text8.text = xmlData.news[7].description;
    rssNews.rss9.text9.text = xmlData.news[8].description;
    rssNews.rss10.text10.text = xmlData.news[9].description;
    
    
    // Add Title
    var myLoader:Loader = new Loader();
    var fileRequest:URLRequest = new URLRequest(xmlData.news[0].image);
    myLoader.load(fileRequest);
    rssNews.rss1.image1.addChild(myLoader);
    var myLoader2:Loader = new Loader();
    var fileRequest2:URLRequest = new URLRequest(xmlData.news[1].image);
    myLoader2.load(fileRequest2);
    rssNews.rss2.image2.addChild(myLoader2);
    var myLoader3:Loader = new Loader();
    var fileRequest3:URLRequest = new URLRequest(xmlData.news[2].image);
    myLoader3.load(fileRequest3);
    rssNews.rss3.image3.addChild(myLoader3);
    var myLoader4:Loader = new Loader();
    var fileRequest4:URLRequest = new URLRequest(xmlData.news[3].image);
    myLoader4.load(fileRequest4);
    rssNews.rss4.image4.addChild(myLoader4);
    var myLoader5:Loader = new Loader();
    var fileRequest5:URLRequest = new URLRequest(xmlData.news[4].image);
    myLoader5.load(fileRequest5);
    rssNews.rss5.image5.addChild(myLoader5);
    var myLoader6:Loader = new Loader();
    var fileRequest6:URLRequest = new URLRequest(xmlData.news[5].image);
    myLoader6.load(fileRequest6);
    rssNews.rss6.image6.addChild(myLoader6);
    var myLoader7:Loader = new Loader();
    var fileRequest7:URLRequest = new URLRequest(xmlData.news[6].image);
    myLoader7.load(fileRequest7);
    rssNews.rss7.image7.addChild(myLoader7);
    var myLoader8:Loader = new Loader();
    var fileRequest8:URLRequest = new URLRequest(xmlData.news[7].image);
    myLoader8.load(fileRequest8);
    rssNews.rss8.image8.addChild(myLoader8);
    var myLoader9:Loader = new Loader();
    var fileRequest9:URLRequest = new URLRequest(xmlData.news[8].image);
    myLoader9.load(fileRequest9);
    rssNews.rss9.image9.addChild(myLoader9);
    var myLoader10:Loader = new Loader();
    var fileRequest10:URLRequest = new URLRequest(xmlData.news[9].image);
    myLoader10.load(fileRequest10);
    rssNews.rss10.image10.addChild(myLoader10);
    
    
    // Add URL
    rssNews.rss1.info1.addEventListener(MouseEvent.CLICK, rss01);
    rssNews.rss2.info2.addEventListener(MouseEvent.CLICK, rss02);
    rssNews.rss3.info3.addEventListener(MouseEvent.CLICK, rss03);
    rssNews.rss4.info4.addEventListener(MouseEvent.CLICK, rss04);
    rssNews.rss5.info5.addEventListener(MouseEvent.CLICK, rss05);
    rssNews.rss6.info6.addEventListener(MouseEvent.CLICK, rss06);
    rssNews.rss7.info7.addEventListener(MouseEvent.CLICK, rss07);
    rssNews.rss8.info8.addEventListener(MouseEvent.CLICK, rss08);
    rssNews.rss9.info9.addEventListener(MouseEvent.CLICK, rss09);
    rssNews.rss10.info10.addEventListener(MouseEvent.CLICK, rss10);
    
    
    function rss01(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[0].url));
    }
    function rss02(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[1].url));
    }
    function rss03(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[2].url));
    }
    function rss04(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[3].url));
    }
    function rss05(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[4].url));
    }
    function rss06(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[5].url));
    }
    function rss07(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[6].url));
    }
    function rss08(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[7].url));
    }
    function rss09(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[8].url));
    }
    function rss10(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[9].url));
    }
    
    

    Kind regards

    use:

    var xmlList:XMLList;

    var xmlData:XML = new XML (MovieClip (this.parent) .xmlDocs [3]);

    xmlList = xmlData.news;

    for (var i: int = 0; i<>

    {

    rssNews ["rss" +(i+1)] ["title" +(i+1)] .text = xmlList [i] .title;

    rssNews ["rss" +(i+1)] ["text" +(i+1)] .text = xmlList [i] .description;

    rssNews ["rss" +(i+1)] ['image' +(i+1)] .loader = new Loader();  If the compiler complains, cast rssNews ["rss" +(i+1)] ['image' +(i+1)] as a movieclip.  IE: MovieClip (rssNews ["rss" +(i+1)] ['image' +(i+1)]) .loader

    rssNews ["rss" +(i+1)] ['image' +(i+1)].loader.load (URLRequest (xmlList [i] .url)) of new;

    }

  • How to share text and image at the same time using Blackberry invocation framework

    Hello

    I need to share the text and its corresponding picture to FB, Twitter and BBM using the framework of invocation of blackberry. No invocation framework support for images and text sharing simultaneously.

    When I use the mime type as text/plain, the url of the image and the text is shared and when it is image/jpeg is used only the image is shared and not the text. Here is the snippet of code used.

    ShareDataTo=function shareTo(key) {
    //shareImage();
    var text ="";
    
    text = itemObject.myName +"\n My Age : Rs."+itemObject.myAge+"\n Address "+itemObject.address+"\n"
    try
    {
    blackberry.invoke.invoke({
    target: key,
    action: "bb.action.SHARE",
    type: "text/plain",
    data:text
    });
    }
    catch(Error)
    {
    //alert('in ShareDataTo error '+ Error);
    }
    }
    

    Help, please

    Kind regards

    Annuk

    This is not currently supported.  Now, you can make a text or an image, but not both.

  • How can I have a button that will show/hide one area of text and images on the same page?

    I have a page like below:

    4ef3986b768c1642dac40a3eb1d534dc.png

    I want to make sure these 3 buttons display text different under them when they are pressed. How can I achieve this?

    Thank you.

    Hello

    Please try to use the Widget for Composition of ToolTip to achieve this...

    You must customize the trigger as long as the button and you can use the target to insert images or the desired text area.

    You can find it in library of Widgets Panel > composition

    Please let me know in case you need further details on that.

    Concerning

    Vivek

  • Panoramic image with text and images at the top of the poster image

    I tried to create a characteristic panoramic image where there is text on the top of the image of the poster with a picture. Below the poster image is panning. The problem is the text and the image that I put on the top of the poster image, does not appear when you use the panoramic image. How can I get it work?

    The problem was the image should be a jpeg file, it was a tif

  • When fixing a user profile service failed, I ended up creating an additional profile and now do not know how to do this

    I was trying to solve a failure of service user profile on windows 7. I stupidly however restarted my computer before going through all the steps listed here: http://support.microsoft.com/kb/947215/en-gb this title I do not know now how I need to go back to my old profile. The original profile is currently. BK at the end is the folder, while the temperature a. BAK and the new profile has nothing in the end.  If anyone can help guide me on the right track, I would be very grateful.

    Hello

    See if this helps you; He will often work with 'profile '. »

    1 do a Safe Mode system restore to before the problem:

    http://www.SevenForums.com/tutorials/700-system-restore.html

    Enter the Mode Windows safe. Use the arrow keys to navigate and the ENTER key to select Mode (which is where you have already gone)

    http://www.computerhope.com/issues/chsafe.htm#03

    See you soon.

  • When installing a new operating system isn't automatically wipe the hard disk, create a new partition, and then install the operating system?

    Have a Dell system, caught a virus and it has really messed up the PC. Recently, it got worse so I tried to reinstall the operating system with the Dell disks. It wouldn't work. So I bought for Windows 7 Professional, it will not be installed. My first question when installing a new operating system isn't automatically wipe the hard disk, create a new partition, and then install the operating system? Because this does the same as the Dell disks, is to take what is on the hard drive and put it in a folder called windows old, is not formatting the HD. When I boot the disk, it shows the installation of files then open windows and start the installation. Before he could finish I get an error missing or corrupted files. Tried several times now, windows will still not open. Any suggestions? Once while trying to install the pc crashed with a blue screen which is one of the reasons why I have reinstall the OS, he started to plant a few times. I don't remember all the details on my PC, but its 4 years, triple core coprocessors, ram 8 GB, 500 GB HD. At the same time just after all this started in Jan. I had also improved my 3 GB to 8 GB memory. I bought the Dell memory for my system. Since the crash, could there be a problem with these new memory chips? Last night I tried to disassemble each and reinstalling it, but that doesn't seem to make a difference. Before I tried to reinstall the operating system, the pc was see the concert 8.

    Original title: used to install Windows 7

    Disconnect any other (additional) internal hard drives and external USB devices.
    Look for any loose hard drive power or cables SATA, graphics card or other power cables.

    First run Memtest86 +:
    It runs from a floppy disk or CD and should eliminate or confirm if one or more of your memory
    sticks are bad or the values of the SPD in the BIOS are correct.
    Let it run for as long as you can: 2,4,6,8 or several hours (at least 3 full passes), so no errors at that time then your ram is OK.
    http://www.memtest.org/
    Memtest86 + Guide/How To (use the.) ISO to create a bootable CD)
    http://www.overclockers.com/forums/showthread.php?t=409152

    Hard drive test:
    If you do not know your readers of the brand and model, try "Speccy",.
    It provides information from the computer/system in detail:
    OS, CPU, RAM, motherboard, graphics, Hard Drive, optical, Audio, peripherals, network.
    Note: Option RAM indicates number of slots, DRAM Timing.
    Works your memory speed (frequency). The nominal frequency of your memory.
    http://www.Piriform.com/Speccy

    Test your player - create a Bootable CD:
    Ranging from 5 to 25% (depending on the make and model) new hard disks are defective.
    Note: Reliability of the drive hard has come the way down over the last 24 months and improved a bit lately according to manufacturing.

    Test your drive with the car manufacture utility.
    If you have a new hard drive Seagate the very next thing would be to download Seagate Seatools
    (bootable CD) and check bad sectors.
    SeaTools for information: http://www.seagate.com/support/downloads/seatools/
    SeaTools for Windows download: http://www.seagate.com/support/internal-hard-drives/enterprise-hard-drives/saturn/seatools-win-master/
    SeaTools for DOS download:
    http://www.Seagate.com/support/internal-hard-drives/consumer-electronics/LD25-series/SeaTools-DOS-master/

    For Western Digital readers to download the .iso from WdDiag file: http://support.wdc.com/product/download.asp?groupid=611&sid=30&lang=en

    Samsung Estool: http://www.samsung.com/global/business/hdd/support/utilities/ES_Tool.html
    Samsung Disk Manager software: http://www.samsung.com/Products/HardDiskDrive/utilities/shdiag.htm

    Hitachi Drive Fitness Test Software: http://www.hgst.com/hdd/support/download.htm#DFT
    Diagnostic tool available for use by customers who believe that having a brand Toshiba Fujitsu hard drive:
    http://SDD.Toshiba.com/main.aspx?path=ServicesandSupport/WarrantySupport/SoftwareUtilities

    Notice of Fujitsu drive management utility: http://www.fujitsu.com/us/services/computing/storage/hdd/

    Toshiba CD bootable: (BACK Diagnostic Tool version 7.0 for IDE/ATA/SATA hard disks)
    http://SDD.Toshiba.com/main.aspx?path=ServicesSupport/FujitsuDrivesUSandCanada/SoftwareUtilities#diagnostic

    Also check Home Edition free Partition Wizard option "Test of disc surface":
    http://www.partitionwizard.com/free-partition-manager.html

    J W Stuart: http://www.pagestart.com

  • Is the a similar to the old central action for older versions of Photoshop where the individual could until load and down load the web site actions

    Is the a similar to the old central action for older versions of Photoshop where the individual could until load and down load the web site actions

    This is the new site for extensions, actions, etc.

    https://creative.Adobe.com/addons

  • I need to transfer my history of the text and images from my old iPhone to my new iPhone, but have already moved all other data to my new phone via iTunes and spent time to organize.  How do I reset this transfer without any?

    I need to transfer my history of the text and images from my old iPhone to my new iPhone, but have already moved all other data to my new phone via iTunes and spent time to organize.  How do I reset this transfer without any?  I transfer a 5s to itself.

    For your photos, try importing them to your computer and their synchronization then back to the SE.

    Import photos and videos from your iPhone, iPad or iPod touch - Apple Support

    For your texts, they moved with the backup restore?

  • I need serious help please... We do translations of textbooks, I searched an excessive type function but have been unable to find, we are working in indesign CS 5. It takes allot of time to delete the text and type in the new language.

    I need serious help please... We do translations of textbooks, I searched an excessive type function but have been unable to find, we are working in indesign CS 5. It takes allot of time to delete the text and type in the new language.

    Argh it's frustrating! I never noticed that the key was not working in InDesign.

    A bit of research and it turns out that the MS Office has this as an option in their software. But I can't find an option in the InDesign preferences to make it work.

    However, somethings do not appear in the shortcuts and preferences and are hidden triggers in InDesign that are accessible via a script.

    I'm not saying that it is possible to activate the button insert by using a script, but it is plausible that he can be activated.

    Maybe ask on the forum script? Scripting InDesign

    I know that this may be a possibility as with InDesign prior to export PDF documents interactive versions, there was previously no way to export PDFs interactive as unique pages if the gaps of.

    But the option to toggle this setting was scriptable.

  • How to save a document to format rich text and images in PDF format manually?

    How to save a document to format rich text and images in PDF format manually?

    Thank you!

    Most applications give the possibility to export or print in PDF format.

    What app did you use to create the document?

  • Blur and expanded text and icons after the connection with Windows vista

    I have windows vista and when I turn on the laptop, the text and icons on the Welcome screen are normal, but after registration on the text and icons become slightly enlarged and fuzzy.  How can I get it back to normal?

    Hello

    There are a number of things to try:

    try going to your graphic card manufacturers site or computer and are looking for the driver download section

    Search your computer or graphics card model number based on what you have and download and install the latest graphics drivers for vista

    then try to make the screen of solution of problems

    http://Windows.Microsoft.com/en-us/Windows-Vista/change-screen-resolution

    Change the screen resolution

    __________________________________________________________

    or try a restore of the system before this happened

    http://www.windowsvistauserguide.com/system_restore.htm

    If necessary do in safe mode

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode option with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.
  • Muse is changing some text and images to white during the download of FTP

    Muse is changing some text and images to white during the download of FTP.  I tried to delete and re-create these assets, but still their changed to white... and I have a white background, so it seems as if it is not yet here.

    Hi Michael,

    Please share your Muse file with us for assistance.

    Please download on creative cloud or dropbox and share the download link with me in a private message.

    Kind regards

    Akshay

  • Oppacity question - instead of building slowly, it immediately passes over the text and images.

    Hello

    Having trouble with the oppacity on my projects. As you can see on the screenshot, I clicked clearly something because any text or images that I'm trying to add to my project and the oppacity value to 0% - then build more than a few seconds at 100%, will not do that. Yet the previous items that I've added will be.

    Y at - it something that I have to click to stop the new text and images to change oppacity immediately. I want to build up over time - I can see that the extra keyframe is different also. Help is greatly appreciated.

    Thanks - Scott.opacity.png

    Hello

    Yes - if you enable the automatic Transition next to the button (red Chrono) self-image-key mode, then you will get the default transitions whenever you create two keyframes that have different values.

    Or well, to immediately solve the problem in your screenshot, just select two keyframes and then right click and choose Create Transition from the context menu. Who's going to do.

    HTH,

    Joe

  • How to correct text and images that are somehow outside the area of cardboard?

    This is the second document that my layout has mysteriously been presented outside the editing table. I saved this document yesterday and everything was fine. Today, there is a connection of several pages text box link, but on 4 pages my text and images have disappeared from the actual page and the table surrounding mount, but it shows the link text box later in the grey area. The last time I had to delete and re-create the pages, but don't have the time. I tried selecting all and using the arrow key to move everything, but he mistakes "this value would cause one or more objects to leave the editing table. I also tried selecting all and downward revision to 10% to bring it to the page or the editing table, but the same error. Any other suggestions? Screenshot below.

    It's a really long shot, but it would be interesting to .idml export and opening that. (see delete minor corruption by exporting)

    And Daniel is right - there is something is wrong with this file and it seriousl get better.

Maybe you are looking for