Banner with a clickable link, what am I doing wrong???

I am trying to make a web banner out of an image I have with a link added so when you click the banner it takes you to the website. It looks fine on my computer but when I saved and email it the image is gone but the link still works. What am I doing wrong?

HTML emails require you to save the images on a server then link to those images with absolute links in the email.
The recipient's email client also needs to be set up to view images (many aren't).

Similar Messages

  • All my purchased song from iTunes are not playing complete (iPod and computer with Windows Vista), unexpectedly stops and continues with next song. What am I doing wrong?

    All my purchased song from iTunes are not playing complete (iPod and computer with Windows Vista), unexpectedly stops and continues with next song. What am I doing wrong?

    Are the songs playing whole in iTunes? if not download them again.
    else read this Apple Support Article on your problem
    Have a nice day!

  • HT1343 On my 4 1/2 year old Macbook I could select multiple files  by highlighting a file and then moving cursor over a file lower in the list, and pressing shift-control-click. I can't do that in now with Mac Pro.  What am I doing wrong?

    ghlighting a file and then moving cursor over a file lower in the list, and pressing shift-control-click. I can't do that in now with Mac Pro.  What am I doing wrong?

    Holding down the control key will invoke "right-click."
    Depending on the View, holding down Shift will with either toggle the selection (Icon View), or it will make a continuous selection from the previous selection (List View or Column View).
    The only way to make a continuous selection in Icon View is to drag out a selection marquee around or through the icons.
    I can't remember the behavior of previous OS's.

  • I can receive but not send emails with my skynet account - what am I doing wrong ?

    I can receive but not send emails with my skynet account - what am I doing wrong ?
    I have no problems with my Yahoo account but I can not send emails with my skynet account.
    Actually in iPhone :
    Outgoing Mail Server > SMTP "relay.skynet.be"
    Primary server > Not Configured > Off
    Thank you ...

    When you set them up, did you set up both the incoming and outgoing email servers separately, and did you enter the correct SMTP server name, and enter your userid and password even though it says "optional"?
    Something else to try, if you haven't, is delete the accounts, connect the iPhone to iTunes, on the Info tab check the box to sync mail server settings, then sync. This should duplicate the settings from your computer to your iPhone.

  • Using my apple ID and password on Mobile Me, I get the message  "Verification Failed"  .  Could not communicate with the server.  What am I doing wrong?

    Using my Apple ID and password on Mobile Me, I get the message "Verification Failed".  Could not communicate with the server"  What am I doing wrong?

    There is a MobileMe forum.  You might have better luck their.

  • HT4623 just got a new i pad mini and its not syncing with my computer. What am i doing wrong

    just got a new ipad mini and its not syncing with my computer. What am i doing wrong

    What version of iTunes are you using? It needs to be version 11.x.
    iPad not appearing in iTunes
    http://www.apple.com/support/ipad/assistant/itunes/
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    IOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Apple - Support - iPad - Syncing
    http://www.apple.com/support/ipad/syncing/
     Cheers, Tom

  • Dragging a JPopupMenu around with a mouse. What am I doing wrong?

    Hello,
    I need to move a JPopupMenu around with a mouse, but it isn' working out as expected.
    Menu is being moved erraticaly, jumping here and there a bit, and lagging behind the mouse movements.
    Although it is moving in general direction of mouse drags.
    Anyone has an idea what am I doing wrong?
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class JPopupMenuDragTest {
        public static void main(String[] args) {
            new JPopupMenuDragTest();
        JPanel contents = new JPanel();
        DraggablePopupMenu popup = new DraggablePopupMenu();
        public JPopupMenuDragTest() {
            contents.setPreferredSize(new Dimension(512, 384));
            contents.addMouseListener(new MouseAdapter() {
                @Override
                public void mouseClicked(MouseEvent e) {
                    popup.show(contents, e.getX(), e.getY());
            showFrame(contents);
        void showFrame(JPanel contents) {
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setContentPane(contents);
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
        class DraggablePopupMenu extends JPopupMenu implements MouseListener, MouseMotionListener {
            JButton btnDragger = new JButton("drag me");
            int clickx, clicky, menux, menuy;
            public DraggablePopupMenu() {
                add(btnDragger);
                btnDragger.addMouseListener(this);
                btnDragger.addMouseMotionListener(this);
            public void mousePressed(MouseEvent e) {
                clickx = e.getX();
                clicky = e.getY();
                Point locationOnScreen = getLocationOnScreen();
                menux = locationOnScreen.x;
                menuy = locationOnScreen.y;
            public void mouseDragged(MouseEvent e) {
                int xOffset = e.getX() - clickx;
                int yOffset = e.getY() - clicky;
                setLocation(menux + xOffset, menuy + yOffset);
            public void mouseClicked(MouseEvent e) {}
            public void mouseReleased(MouseEvent e) {}
            public void mouseEntered(MouseEvent e) {}
            public void mouseExited(MouseEvent e) {}
            public void mouseMoved(MouseEvent e) {}
    }

    Thanks, that kind of works. The point is, I have to use Java 1.5, which does not support getX/YOnScreen for MouseEvents.
    I changed the code to:
            public void mouseDragged(MouseEvent e) {
                Point p = e.getPoint();
                SwingUtilities.convertPointToScreen(p, (Component) e.getSource());
                setLocation(p.x - clickx, p.y - clicky);And everything seems fine, until iI drag the popup out of the containing JFrame.
    Then the disco starts.
    If you can find the answer for this, tat would be great, but thanks anyway.

  • I just bought an Ipod Nano for my husband from a friend. We cannot figure how to add songs. I have an Ipod Touch and everything I pull up on Itunes is dealing with mine...I can't do anything with his Nano. What are we doing wrong?

    I purchased an Ipod Nano from someone yesterday. How do I register it in my name and unregister the previous owner. I have a 4th gen Ipod touch and was told I could add songs from my library to the nano but we can't seem to do anything with it. HELP please!!

    Connect it to your computer and restore it as a new device. Then chose what music you want to sync with it and do so just like your Touch does.

  • Issues with ActionListener and KeyListener, what am i doing wrong?

    basically the program will complie, but not run properly, in appletviewer or a browser. The code for the buttons will be added later, but the test code seems to be working ok. The code for KeyListener does not move the square in the applet as it should, and when i close the applet it will dump a long error message to the dos window. if i comment out Action listener then KeyListener will work fine. if i comment out KeyListener then the applet will close with no error message to the dos window.
    i'm new to java and i don't know if i am doing anything wrong. please help, thankyou.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class Project22 extends Applet implements KeyListener, ActionListener {
    private int score = 0;
    private int speed = 5;
    private int [] frame = {500, 500};
    private int [] sqr_loc = {235, 235};
    private char keyinput;
    private Button new_b = new Button("New Ball");
    private Button ext_app = new Button("Exit");
    private int junk = 0; // debug
    private Label message = new Label("start"); // debug
    public void actionPerformed(ActionEvent event) {
    Object source = event.getSource();
    if(source == new_b) {    // not coded yet
    ++junk;
    message.setText(Integer.toString(junk));
    else if(source == ext_app) {     // not coded yet
    ++junk;
    message.setText(Integer.toString(junk));
    public void keyTyped(KeyEvent event) {}
    public void keyPressed(KeyEvent event) {
         int keycode = event.getKeyCode();
    if(keycode == KeyEvent.VK_RIGHT) {
    if(sqr_loc[0] < 475) {
    sqr_loc[0] += speed;
    repaint();
    else if(keycode == KeyEvent.VK_LEFT) {
    if(sqr_loc[0] > 0) {
    sqr_loc[0] -= speed;
    repaint();
    else if(keycode == KeyEvent.VK_UP) {
    if(sqr_loc[1] > 0) {
    sqr_loc[1] -= speed;
    repaint();
    else if(keycode == KeyEvent.VK_DOWN) {
    if(sqr_loc[1] < 475) {
    sqr_loc[1] += speed;
    repaint();
    public void keyReleased(KeyEvent event) {}
    public void paint(Graphics g) {
    g.drawRect(sqr_loc[0], sqr_loc[1], 25, 25);
    }     // end paint
    public void init() {
    add(new_b);
    add(ext_app);
    add(message);
    new_b.addActionListener(this);
    ext_app.addActionListener(this);
    addKeyListener(this);
    requestFocus();
    }     // end Project22

    Perhaps the error message can help to determine the problem?

  • TS1347 My Outlook is set up and I'm trying to import contacts from my iphone into Outlook with no sucess.  What am I doing wrong?

    I am trying to import my contacts into Outlook from my iphone.  I can not get it to work.  My Outlook is all set up and running...

    IIf you previously had items backing up to the iCloud, changing to the new phone will take a while depending on how much data and apps your restoring to the new phone. If your like me with 1,000's of pics and videos, it's gonna take a while. Make sure your phone I plugged in, your on wifi and let it do its things. If you see all your apps updating, then it's doing something. If this is not your issue, then it could be the phone froze up. I have the 6 plus and recently switched from the 5, and it took a long time to restore from the cloud. Restoring from iTunes is quicker I guess, but I didn't have that option at the time and was dying to use the new phone I eaitrd 2 weeks for. Anyways, good luck and I hope I answered something for you.

  • .mov files keep pausing the images with 7.4. What am I doing wrong?

    I play a .mov and the video keeps stoping and starting on me. The audio still plays fine. Has anyone else had this problem?
    Message was edited by: sledge2071

    Do a clean install and delete the Firefox program folder.
    * Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 8.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version or you lose your bookmarks and other data in the profile folder.
    * Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Profile_backup

  • Canon iR1025if is printing garbage with latest driver.  What am I doing wrong?

    I have an iMac with OS X 10.9 installed on release day (10/22).  Ever since I upgraded I am not able to print "perfect" PDF files from Preview or Skim.  Files generated using LaTeX and some special fonts print "garbage" or blanks with a Canon iR1025if. 
    The printer was working fine under 10.8 and the (then) latest Canon driver.  After I upgraded to 10.9, I kept getting errors when I tried to print something, so I uninstalled printer and old driver, installed new driver, and reinstalled the printer (following directions found here in the Apple Support Cummunities).  I could then print again, but every time I use some different (math) fonts, such as Arev Sans, it either prints garbage, boxes or blanks instead of the text.  See the picture attached.  When the PDF is printed under Adobe Acrobat Reader, it comes out exactly as on screen.
    Notice that the same PDF on screen is correct, while the printed version is full of garbage.  Other fonts generate similar problems.
    Any ideas how to fix this?  I'd appreciate any help.
    malu

    Hello MLO_BR,
    It looks like you are getting some anomolies when printing from these programs, and mulitple fonts are affected. I would recommend the troubleshooting found in this article named:
    Troubleshooting printer issues in OS X
    http://support.apple.com/kb/ts3147
    Follow these steps until the issue is addressed:
    Make sure that the printer is powered on, has ink / toner, and that there are no alerts on the printer’s control panel. Note: If you cannot clear an alert on the printer's control panel, stop here and check the printer's documentation or contact the manufacturer for support.
    Ensure the printer is properly connected to a USB port on the Mac or AirPort base station / Time Capsule. If the printer is a network-capable printer, make sure that it is properly connected to your home network.
    Use Software Update to find and install the latest available updates. If an update is installed, see if the issue persists.
    Open the Print & Scan pane or Print & Fax (Snow Leopard) pane in System Preferences.
    Delete the affected printer, then add the printer again.
    If the issue persists, try these additional steps:
    Reset the printing system, then add the printer again.
    If the issue still persists, reset the printing system again.  Download and install your printer's drivers. Then, add the printer again.
    Contact the printer vendor or visit their website for further assistance.
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • I can't seem to copy & paste while I am using Firefox; but I can with Internet Explorer. What am I doing wrong? I guess I just don't understand how to do it.

    I am working in Ancestry.com. If I am in Internet Explorer, I can copy a picture & then paste it in my pictures, on my computer. If I am using Firefox, I don't understand which things to do to copy & then paste a picture, like I can in Internet Explorer. I prefer to use Firefox, but need to be able to use this copy & paste feature, often. I just downloaded Firefox, & started using it, again, yesterday. I just got a new computer in June.

    When you run out of keyboard short cuts, enter the addtional names in the name field in the keyword editor. That will start a new Keyword Collection. You can apply the addtional keywords to multiple cllips on the event browser. Or you can drag the clips into the Collection in the Event Library.
    Russ

  • My iTunes library doesn't sync completely with my iPod. What am I doing wrong?

    Some songs just won't sync or copy over to my iPad.  Suggestions?

    Bill,
    After you connect your iPod, but before you start the sync, go to the Summary tab set the parameter "Convert higher bit rate songs to" as pictured below.  You can choose 128, 192, or 256.
    This will cause iTunes to make smaller versions "on the fly" and copy them to the iPod, without changing the files in your library.
    Note that the first time you do this, it will be slow, since every file has to be processed.  On succeeding syncs, it will be much quicker since only new and changed files will be processed.

  • My iPod is not syncing with my iTunes. What am I doing Wrong?

    I have hit the sync button a number of time and restarted my ipod. I am missing two of my playlists and a full album.

    Moving to Illustrator forum.
    Regards,
    Romit Sinha

Maybe you are looking for