Images as Links

I am trying to use an image as a link, I can syle all the
text hyperoinks I have but for cant do it with the images and
always end up with a border around them, i have tried setting
border to none and text decoration to none
Can anyone help me please

This is a multi-part message in MIME format.
--------------090803080205000302050006
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
seriously, micha. i don't know you guys who've been here
longer than me
can take it!
if only there was some way to force people to search for
their answer
before posting.
Michael Fesser wrote:
> .oO(small digital)
>
>
>> not setting border to none, put value=0
>> <img src="images/your_image.gif" alt=""
width="125" height="72" border="0" align="middle" />
>>
>
> This is deprecated code (and dependent on the used
doctype it might be
> even invalid). The correct way is to use CSS to style
the images as
> necessary:
>
> a img {border: 0}
>
> This question comes up nearly every day ...
>
> Micha
>
--------------090803080205000302050006
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
seriously, micha. i don't know you guys who've been here
longer than me
can take it!<br>
<br>
if only there was some way to force people to search for
their answer
before posting.<br>
<br>
Michael Fesser wrote:
<blockquote
cite="mid:[email protected]"
type="cite">
<pre wrap="">.oO(small digital)
</pre>
<blockquote type="cite">
<pre wrap="">not setting border to none, put value=0
&lt;img src="images/your_image.gif" alt="" width="125"
height="72" border="0" align="middle" /&gt;
</pre>
</blockquote>
<pre wrap=""><!---->
This is deprecated code (and dependent on the used doctype it
might be
even invalid). The correct way is to use CSS to style the
images as
necessary:
a img {border: 0}
This question comes up nearly every day ...
Micha
</pre>
</blockquote>
</body>
</html>
--------------090803080205000302050006--

Similar Messages

  • Question regarding image and links tag

    Hi. Im new to podcasting and have just had my first podcast excepted on itunes.
    Im using garageband.com to store my audio file and copy & pasting the address into itunes to submit it. (http://www.garageband.com/user/wabel/podcast/main.xml)
    What i dont understand is adding an cd cover image and links to a web site.
    I asume its sumular to html, where you type the code with link or image, but where? I cant edit within the above link!
    Please help.

    The "code" for images and links goes into the xml file.
    <?xml version="1.0" encoding="UTF-8"?>
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
    <channel>
    <ttl>60</ttl>
    <title></title>
    <link></link>
    <language></language>
    <copyright></copyright>
    <itunes:subtitle></itunes:subtitle>
    <itunes:author></itunes:author>
    <itunes:summary></itunes:summary>
    <itunes:owner>
    <itunes:name>John Doe</itunes:name>
    <itunes:email>[email protected]</itunes:email>
    </itunes:owner>
    <itunes:image href="http://example.com/podcasts/everything/AllAboutEverything.jpg" />
    <itunes:category text=" ">
    <itunes:category text=" "/>
    </itunes:category>
    <item>
    <title></title>
    <itunes:author></itunes:author>
    <itunes:subtitle></itunes:subtitle>
    <itunes:summary></itunes:summary>
    <enclosure url=" " length=" " type=" " />
    <guid></guid>
    <pubDate></pubDate>
    <itunes:duration></itunes:duration>
    <itunes:keywords></itunes:keywords>
    </item>
    </channel
    </rss>

  • When I click images or links that should automatically open in a new window, instead a new blank window opens.

    For some time now and after firefox has automatically been updated a few times, I click on images or links which are supposed to open in a new window automatically. A new window opens but it is blank with no toolbars, just an adress bar with nothnig in it.

    mha007, Thank you. I walked through your suggested solutions and finally disabled all add-ons and restarted them one by one. The culprit seems to be ViewSourceWith 0.8.11. Interestingly when it is enabled I had to go to TaskManager to force Firefox to quit.
    Maybe this information will help others. I don't know if the cache clearing etc helped but I would suggest that others start but Bringing up Firefox in Safe Mode (hold shift when you select the icon), disable all add-ons and then start them one by one.
    Of course if you have ViewSourceWith maybe you should just disable it first rather than go through the tedium of restarting each add-on separately. To get to the add-ons when it won't open from the toolbar type about:addons in the address area.

  • The curser includes a text box from a previous image or link when the curser is positioned on the side of the page. i click and it goes away but only to return again on the next launched page. how do i get rid of this?

    the cursor includes a text box from a previous image or link when the cursor is positioned on the side of the page. it will mainly happen when i hit "back" from the page i was on. i click and it goes away but only to return again on the next launched page. i also keep several tabs open and it will carry over to any one of them i go to. how do i get rid of this?
    == This happened ==
    Every time Firefox opened
    == when i upgraded to most recent version 3.6.8

    A number of extensions can cause that problem, you'll need to do a little troubleshooting to find out which extension is causing that to happen for you.
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • HTML content with images and links blocked

    Hello,
    I very much need some help here because my company needs to send out newsletters to our clients in HTML format soon and so far the email with HTML content is being blocked as spam while text content works fine. Specifically, whenever I add a link or an image in HTML content, the email doesn't go through. I tried sending in multipart format but it is also not sending HTML with images and links. Here is my attempt:
                                    props.setProperty("mail.transport.protocol", "smtp");
                                     props.setProperty("mail.host", "mail.server.com");
                                     props.setProperty("mail.user", "joeuser");
                                     Session mailSession = Session.getDefaultInstance(props, null);
                                     mailSession.setDebug(true);
                                     Transport transport = mailSession.getTransport();
                                     MimeMultipart mp = new MimeMultipart("alternative");
                                     MimeBodyPart htmlPart = new MimeBodyPart();
                                     MimeBodyPart textPart = new MimeBodyPart();
                                     textPart.setText("Just to make it multipart");
                                     htmlPart.setHeader("MIME-Version", "1.0");
                                     htmlPart.setHeader("Content-Type", htmlPart.getContentType());
                                     htmlPart.setContent(strHtmlMessage, "text/html");
                                     mp.addBodyPart(textPart);
                                     mp.addBodyPart(htmlPart);
                                     MimeMessage message = new MimeMessage(mailSession);
                                     message.setHeader("MIME-Version", "1.0");
                                     message.setHeader("Content-Type", mp.getContentType());
                                     message.setHeader("X-Mailer", "Recommend-It Mailer V2.03c02");
                                     message.setContent(mp);
                                     message.setSubject(strSubject);
                                     message.setFrom(new InternetAddress("[email protected]"));
                                     message.addRecipient(Message.RecipientType.TO,
                                             new InternetAddress("[email protected]"));
                                             transport.connect();
                                             transport.sendMessage(message,
                                             message.getRecipients(Message.RecipientType.TO));
                                     transport.close();This code is one of my numerous attempts to make HTML send images and links. Please, let me know if there is a workaround way to make JavaMail send HTML with links and images in the message body. Your help will be greatly appreciated.

    The JavaMail FAQ has information on creating HTML messages, including
    messages with both plain text and HTML. Did you find it?
    BTW, your code has many unnecessary statements, such as setting
    the Mime-Version header, which JavaMail will do for you, and setting
    the Content-Type header, which JavaMail does as a side-effect of the
    setContent or setText calls.
    Other than that, it looks like your code should be correctly creating a
    multipart/alternative message. If the recipient is still rejecting it you
    need to figure out what it is about the message that makes the recipient
    think it's spam. Can you send a similar message using another mailer?
    Can you send the message to a different recipient?

  • Body text cannot contain images or links until we are able to verify your account

    When will you be able to verify my account so I can make an actual post with all the relevant infomation?

    Hi,
    Can you post your question with images and links normally now?
    If still not, please check the emails to confirm your account.
    In addition, this issue is not related to Windows Server 2012 and should not be posted here.
    Regards,
    Arthur Li
    TechNet Community Support

  • What is the best way to add multiple images with links into an email signature?

    I created an email signature with five linked images by:
    * creating new message
    • attached the image
    • adding link to the image
    • copied new email signature
    • under Preferences/Signature added the new signature
    It all works, but some of the emails bounced back. When we removed the images, the email went through.
    I  tried putting all the images into Photoshop and making it all one image, used the slice tool to create a link for each image and brought that single image into the signature, but that didn't work as separate links.
    Any suggestions?

    Hi Bob.
    So what I should have done on my PC for all my files is gone to the File menu and used the Package command which would have converted it into a file with the images in it so they wouldn't need to be relinked.
    From now on I will only be working on Mac (I gave away my PC) but I'm sure I could use a friend's pc (or at a later point install Windows on my Mac). But to use the Package command on PC I need to actually have the images in the correct folder on the PC right?

  • Want to have the invoice image PDF link in the approval Notification

    Hi Gurus,
    We are seeking feasibility of how invoice image PDF link can be included in the Invoice Approval Notification.
    Thanks,
    Ganesh

    So how are you planning on implementing that?

  • Windows.ApplicationModel.DataTransfer. How share image and link in same post ?

    How share image and link in same post  ?

    You can
    share a link and share an image (as an image or
    as a file), but logically speaking all of the data types shared are considered different views of the same thing. The share target will pull out the best format for its target and leave the rest. The share source cannot tell the target how to interpret
    the data.
    See
    Choosing data formats and file types.
    If you want to combine multiple data types in one view then you can combine them in an HTML page. See
    How to share HTML

  • Small images a link to bigger ones.

    Is it possible in iWeb to make a small image a link to a bigger one? In other sites that I have seen you can click on an image and a larger one will come up.
    Pat

    Hi Jonathan,
    When I responded to the OP's question, I assumed she was looking for a way to link to an image larger than the 800x600 maximum allowable size in iWeb, as in this example:
    http://web.mac.com/mark8heaton/iPhoto/treemoving/BEF04635-B86E-4AD3-8064-1761884 E9D6B.jpg
    Wasn't sure of the OP's intentions, just thought she wanted a way to link to a larger, external file, or a larger 'image page' by itself, in iWeb, rather than going directly to a slideshow page.
    Mark

  • Smart collection of image files linked to InDesign documents?

    I would like to create a Smart Collection that finds all of the image files linked to InDesign documents in a specific folder.
    I am the yearbook advisor at school and I need to easily find all of the images that have been placed so that we don't reuse images by mistake.
    I have no scripting experience, so I can't create something myself, and I haven't been able to find anything that does such a thing.
    Many yearbook design software programs do offer something like this - indicating that an image has been used previously.
    I guess it would need to look at the metadata of the InDesign Files for the Linked Files and then pit all of the files found there into a Smart Collection.  Ideally, I would be able to further limit it by file type. ANd to not include Master pages if so desired (although that would just be a bonus!)
    I greatly appreciate any assistance anyone can give.
    Thanks!

    I'd be glad to give it a shot, even though I'm a beginner (and I am afraid I am out of my depth), but i'm missing something obvious because I could download and install the script, but if I try to open it to edit it, I just get gobbeldygook.  Any chance you could paste the script here?
    Again, I really appreciate your help.

  • Keep track of images and links in a datafile

    Hi,
    I have set up replication between my source and destination server. How do images and contents linked in a webpage section replicate?
    I think images and content reffred should be replicated seperately, as a datafile doesnot have a refrence telling images reffered should be moved.
    Now the question is how to move Images and contents that are linked in the webpage along with datafiles.
    One solution is to use SiteStudio section replication. If we use that how to make sure this goes through a work flow and then gets replicated?
    your inputs willl be usefull

    This seems somewhat like an architecture question. Let's assume you have two servers (I'll call them staging and production). You have set the Site Studio Migration Utility to automatically replicate content associated with your site from staging to production. Now in our example, on staging there is a datafile with various images and links to native content that users regularly update. You have a workflow layer applied to all datafiles of your site so that content isn't migrated into production until it has been workflow approved. I'm assuming this is how you are set up (since this is a commonly recommended architecture).
    Now back to the datafile. I'm assuming the images in the datafile (as well as any linked native content) have site specific metadata applied to them, so that the Site Studio Migration utility replicates them into production just like migrates other areas of your site. If that is the case, then it is the responsibility of the workflow approver to verify that all images (and document links) look right before approving the content for auto migration.
    Unfortunately, you may run into a situation like the following... You have a page that lists sales figures every month, and uses an image to visualize those sales figures. You already have a datafile in production for February as well as the associated February graphic. You create an updated sales figure datafile for March, as well as an updated associated image for March. The image migrates into production automatically, before the updated datafile referencing the updated image clears workflow. Your February sales figure page could potentially have the March sales image inside of it. This is a potential problem since there is no concept of a "group approval" for all elements that make up the contents within a datafile. You could add a layer of workflow to all native content and images, but then you'd have to be fairly certain that you were synched up properly. You could also manually migrate, but I can see where this would not be ideal either. Unfortunately, there is no easy answer.

  • Image download link without zip using javascript

    Hi,
    Actually i know this question is not related for this thread but i need technical help
    i want to know how to bring the single image download link can bring for example
    Download
    when i click the download link the image open in a new window but i need to download the image like a zip file download
    how can i done it..
    Thank you.

    >
    Actually i know this question is not related for this threadNot related to this thread or forum, JavaScript questions belong to JavaScript forums.
    Mel

  • Adding image and link at bom matrix.

    Hello Friends,
                         I have added two user defined fields in the matrix at bom form as.
    1.For storing image
    2.For storing link
    Now I want to add image and link through coding but this is giving me error as "This is not user defined item."
    Thanks.

    Mithun,
    Did u make sure that the Columns are Active and Editable..? are they visible..??
    To set the value try the following..
    objEdit = objMatrix.Columns.Item("V_12").Cells.Item(pVal.Row).Specific
    objEdit.String = "www.yahoo.com"
    where objEdit is a Edit text.
    Regards,
    Vasu Natari.

  • Making background image clickable link

    I have several div tags with background images in them.  I want to make the background images clickable links.  what is the easiest way to do this?

    Yes, the background image can be made clickable.
    Here is the link to get the info to one method: http://ran.ge/2009/11/11/css-trick-turning-a-background-image-into-a-clickable-link/
    Basically it is written like this:
    ==CSS==
    #bkgrdimage {
        background-image:url ('image.png');
        display:block;
        height:??px;       (image height)
        width:??px;        (image width)
        text-indent:-9999px;  
    ==HTML==
    <a href="http://????" title="Title of Link" id="bkgrdimage">Basic Text For this Link</a>
    The text indent places the "basic text for this link" outside the browser screen.

  • Image map links not working in all browsers

    Hi, I develop HTML marketing emails once a week and my boss
    has recently informed me that some, not all, of the image mapping
    links do not work in all browsers or emails i.e. MacMail, Opera,
    Safari, etc. He's positive there's something in Dreamweaver that
    makes the links universally accommodated no matter what email/web
    browser you use, but I haven't been able to find a solution as of
    yet.
    Any help on this would be appreciated, thanks!
    :music;

    Let's start with the least critical issue. Your boss and his
    boss are
    simply wrong. An HTML link is just an HTML link, whether
    created in DW or
    in Notepad.
    Now, on to the meat. When you upload this page to the web, do
    the links
    work? And when you say that they don't work, what do you
    mean? Do you mean
    that when you click on them, you are not taken to the linked
    page? Which
    links are not working?
    Finally, why do you have your mapped image also within an
    anchor tag?
    <a href="
    http://www.beyondthewall.com/xcart/giftcert.php"><img
    src="Slice.jpg" width="263" height="58" border="0"
    usemap="#Map" /></a>
    Is that the one where the link doesn't work?
    Can you post a link to this page on the web, please?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "blaise napolitan" <[email protected]> wrote
    in message
    news:[email protected]...
    > Thanks for the reply, and that's what I would have
    figured but in this
    > case the
    > entire thing is an image map so there's no absolutely
    positioned elements
    > that
    > would overlay the links. It's just a simple table with
    the main picture
    > mapped
    > out with a few links. I'm assuming it either has to do
    a) the image not
    > being
    > displayed correctly due to a built in email security
    feature or b) my boss
    > and
    > his boss are mistaken (which wouldn't surprise me). I'll
    post the code
    > just in
    > case, thanks for all the help.
    >
    >
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    > <title>Untitled Document</title>
    > <style type="text/css">
    > <!--
    > .style42 {
    > color: #000000;
    > font-weight: bold;
    > }
    > .style29 {
    > color: #FFFFFF;
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    > font-size: 18px;
    > font-weight: bold;
    > }
    > -->
    > </style>
    > </head>
    >
    > <body>
    > <table width="767" border="0" align="center"
    cellpadding="0"
    > cellspacing="0">
    > <tr>
    > <td><a
    > href="
    http://www.beyondthewall.com/xcart/beyond_the_wall_posters_prints.html"><i
    > mg src="Logo.jpg" width="288" height="58" border="0"
    /></a><a
    > href="
    http://www.beyondthewall.com/xcart/giftcert.php"><img
    > src="Slice.jpg"
    > width="263" height="58" border="0" usemap="#Map"
    /></a><a
    > href="
    http://www.beyondthewall.com/xcart/beyond_the_wall_posters_prints.html"><i
    > mg src="pay.jpg" width="216" height="58" border="0"
    /></a></td>
    > </tr>
    > <tr>
    > <td><img src="main.jpg" alt="main" name="main"
    width="767"
    > height="513"
    > border="0" usemap="#mainMap" id="main" /></td>
    > </tr>
    > <tr>
    > <td bgcolor="#FFFFFF"><div
    align="center"><a
    > href="mailto:[email protected]"
    class="style42"
    > style="text-decoration:none" border="1">*To
    Unsubscribe Click
    > Here*</a></div></td>
    > </tr>
    > <tr>
    > <td bgcolor="#7e0997"><div
    align="center"><a
    > href="
    http://www.beyondthewall.com/xcart/beyond_the_wall_posters_prints.html"
    > class="style29"
    >
    style="text-decoration:none">www.beyondthewall.com</a></div></td>
    > </tr>
    > </table>
    >
    > <map name="Map" id="Map"><area shape="rect"
    coords="78,33,79,34" href="#"
    > /></map>
    >
    > <map name="mainMap" id="mainMap">
    > <area shape="poly"
    >
    coords="10,7,376,16,369,227,211,218,177,92,122,85,12,109,13,118"
    > href="
    http://www.beyondthewall.com/xcart/posters_prints_novelty_sex.html"
    > />
    > <area shape="poly"
    coords="13,117,121,90,174,99,216,270,9,294"
    > href="
    http://www.beyondthewall.com/xcart/six-pack-24x36.html"
    />
    > <area shape="poly"
    coords="219,225,393,251,347,469,174,407"
    > href="
    http://www.beyondthewall.com/xcart/david-beckham-arm-st4514-24x36.html"
    > />
    > <area shape="poly"
    coords="226,489,14,496,13,303,199,283,168,410"
    > href="
    http://www.beyondthewall.com/xcart/tension.html"
    />
    > <area shape="poly"
    coords="394,16,674,16,668,241,387,238"
    > href="
    http://www.beyondthewall.com/xcart/colin-egglesfield-24x36.html"
    />
    > <area shape="poly"
    coords="407,251,665,254,661,501,403,492"
    > href="
    http://www.beyondthewall.com/xcart/daniel-24x36.html"
    />
    > <area shape="rect" coords="681,15,761,508"
    > href="
    http://www.beyondthewall.com/xcart/beyond_the_wall_posters_prints.html"
    > />
    > </map></body>
    > </html>
    >
    >

Maybe you are looking for

  • Why does my InDesign CS6-created interactive pdf w/ email submit button no longer submit from Reader

    Last spring I created a 6 page interactive pdf form to email my clients. At the end of the form, I designed Print and Submit buttons. I tested it in Reader and both buttons worked. However, now after revising some of the fields in the same form, the

  • Possible to reformat my new Zen Vision:M to remove last users data e

    Hey guys. I just wondered if it's possible to reset the unit back to its factory settings at all? Would this be done if I updated the firmware for example? Any info would be much appreciated.

  • Time taken in 103 movement to 105 movement.

    Hi, I want to know that how much time taken in 103 movement to 105 movement. We want how much time take to 105 after 103 movement. In which table we can find it.. Means: - 105 Document - 103 Document = Diff. Days 10.01.2010     -  01.01.2010     = 10

  • Let the printer determine colors in Acrobat 8

    Hi, I am trying to figure out how to let the printer (post script) determine the colors when printing in Acrobat 8.  I have read in the user guide that I can configure Acrobat to allow the printer to determine the colors, I just haven't figured out h

  • Configuring HA

    Hi, I have Cisco 5508 Controller with 7.4.110.0 IOS. i am adding new Cisco 5508 as HA unit to the active unit. i am getting error " Starting Licensing Services: LICENSE_PRINT:cnfgrCslLicense:ERROR:license request Failed for units: 500 rc:User failed