Jpg Link - Cant Change Border Around Link - Explorer

I am creating a website in Blues, oranges, and some greens. I
have made some simple jpg buttons in the color scheme. I set the
Page Property- Link color and Visited links to orange, which is
what I want - but in Explorer they have a Fuscia border around them
which really messes up my color scheme.(only the linked jpg's not
all the others) However, in Netscape the jpg/link border is orange,
as I set up, and they look good. What can I do to make the Fuscia
go away?

Add border="0" to the <img>:
<img src="image.jpg" alt="image description" width="300"
height="200"
border="0" />
Ken Ford
Adobe Community Expert - Dreamweaver
Fordwebs, LLC
http://www.fordwebs.com
"Betheanne_P" <[email protected]> wrote in
message
news:folqvp$ohk$[email protected]..
>I am creating a website in Blues, oranges, and some
greens. I have made
>some
> simple jpg buttons in the color scheme. I set the Page
Property- Link
> color and
> Visited links to orange, which is what I want - but in
Explorer they have
> a
> Fuscia border around them which really messes up my
color scheme.(only the
> linked jpg's not all the others) However, in Netscape
the jpg/link border
> is
> orange, as I set up, and they look good. What can I do
to make the Fuscia
> go
> away?
>

Similar Messages

  • Border around image link?

    Hello,
    I created this HTML email and only in gmail there is a purple border around the header link?  I have the border setup to O.  It looks great in hotmail and outlook though.  Do you know why this would happen?
    <!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=UTF-8" />
    <title>Guardian Credit Union</title>
    <style type="text/css">
    <!--
    .style1 {
    font-family: Arial, Verdana, sans-serif;
    font-size: 14px;
    .style2 {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    .style3 {font-family: Arial, Verdana, sans-serif; font-size: 12px; }
    a:link {text-decoration:none;border: 0px;}
    img {border: 0px;}
    -->
    </style>
    </head>
    <body>
    <table width="625" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td border="0"><a href="http://www.tellgcu.com/{{Purl}}"><img src="http://208.69.110.181/GCU_919743-site/images/emailHeader.jpg" alt="Urgent deadline regarding your debit/ATM card services. To keep the overdraft service you already have, we need to hear from you." /></a></td>
      </tr>
      <tr>
        <td><p class="style1">Dear {{CustomerName}},<br><br>In order to continue giving you the same Overdraft Services you are receiving today, we will need your permission by August 15th.</p>
          <p class="style1">Overdraft Services allow us to cover debit card purchases or ATM withdrawals for you when the transaction is more than your balance. </p>
        <p class="style1">You can choose to continue receiving that service, or to have the debit card purchase declined at the cash register. <a href="http://www.tellgcu.com/{{Purl}}">Click here to find out more!</a></p></td>
      </tr>
      <tr>
        <td><br><p class="style1">Sincerely,<br><br><br>Guardian Credit Union</p><br><br><br><font size="-2pt">You will be charged a paid item overdraft fee of $32 for each overdrawn item created by Debit Card purchases or ATM withdrawals. The amount of any overdraft item including our paid item overdraft fee of $32 shall be due and payable upon demand, but if no demand is made, no later than 30 calendar days after the creation of the overdraft. We may refuse to pay an overdraft item at any time even though we may have previously paid overdrafts for you. For example, we typically do not pay overdraft items if your account is not in good standing or if based upon our review of your account management, we determine that you have too many overdrafts or are using the service as a regular line of credit.</font></td></tr>
    </table>
    </body>
    </html>
    THanks,
    Melanie

    i know im a bit late on responding but i think what you need to do mshef534 is to put the code a img {border: 0px;} within the image ref itself i.e.
    <a href="http://www.facebook.com/search/results.php?q=Samuel+Emerton&init=public#!/profile.php?id=1 00000235960932"target="_blank"><img src="facebook.png" width="43" height="43" a img {border: 0px;}/> and that should do it this worked for me happy htmling

  • Border around image links

    What the heck is it with a blue border around image links in
    CS3???? I discovered I can get rid of it by setting the border to 0
    in properties but what a pain. I also noticed tables have a 1
    border by default. I'm sure there is a place to change the default
    but I can't find it.
    Any suggestions?
    thanks,
    CJ

    On Fri, 1 Jun 2007 13:11:16 +0000 (UTC), "SeaJaye"
    <[email protected]> wrote:
    >Win,
    >I like the way you think. For those of us who are cake
    baking challenged, could you put up a recipe for said cake?
    >thanks,
    >cj
    Sure. This set of stuff:
    *zeroes out the margins and paddings
    * guarantees a vertical scrollbar (so no jumping between
    short and
    long pages)
    * establishes colours and fonts etc. for the tags I tend to
    use
    * gives me a way to float images left or right
    * defines a tag that I can use to clear floats (the hr tag,
    in this
    case, since I never use an hr as a visual element: I always
    define
    borders when I need them)
    * styles the form and form elements
    I customize these to suit.
    /* CSS Document */
    margin: 0;
    padding: 0;
    html {
    height: 100%;
    margin: 0;
    padding: 0;
    body {
    min-height: 101%;
    font: 100.01%/130% "Trebuchet MS", Verdana, Helvetica,
    sans-serif;
    color: #000;
    background: #4f865b url(../images/bgTexture.png) repeat;
    margin: 0;
    padding: 0;
    hr {
    height: 0;
    line-height: 0.0;
    font-size: 0;
    margin: 0;
    padding: 0;
    clear: both;
    visibility: hidden;
    h1, h2, h3 {
    font-size: 150%;
    color: #4f865b;
    margin: 20px;
    font-weight: bold;
    h2 {
    font-size: 120%;
    color: #cc6600;
    h3 {
    font-size: 100%;
    color: #4f865b;
    font-style: italic;
    p {
    font-size: 90%;
    margin: 10px 20px;
    ul {
    margin: 10px 20px 10px 40px;
    font-size: 90%;
    a:link {
    color: #cc6600;
    a:visited {
    color: #4f865b;
    a:hover, a:active, a:focus {
    color: #7dd08f;
    .imgLeft {
    border: 1px solid #dfdabd;
    padding: 5px;
    float: left;
    margin-right: 10px;
    .imgRight {
    border: 1px solid #dfdabd;
    padding: 5px;
    float: right;
    margin-left: 10px;
    /***** CONTACT FORM STYLES *****/
    #content form{
    margin: 0;
    width:450px;
    #content fieldset{
    border: 1px solid #d69400;
    margin-bottom: 10px;
    padding:5px 5px 20px 20px;
    #content legend {
    font-size: 120%;
    margin: 12px 0 0 0;
    color: #18006a;
    #content textarea{
    background-color: transparent;
    border: 1px solid #18006a;
    height:200px;
    margin:0 30px 0 0;
    #content label{
    display:block;
    font-size:80%;
    padding-top:5px;
    #content button{
    background-color: #ecc97d;
    display:block;
    width:80px;
    /* sets the enquiry box to the right of the input fields */
    .labelfloat{
    padding-top:20px;/* float:right;*/
    #content input:text, #content select{
    /*background-color: #E8E2C2;*/
    background-color: transparent;
    border: 1px solid #18006a;
    display:block;
    margin:0 0 0 0;
    width:200px;
    /* END FORM STYLES */
    Win
    Win Day, Wild Rose Websites
    http://www.wildrosewebsites.com
    [email protected]
    Skype winifredday

  • Removing border around image with link

    I know this is really basic but I can't find anywhere how to
    avoid having a purple border around a linked image. Help
    please!

    Nope. Not if you want valid XHTML.
    CSS does the trick -
    a img { border:none; }
    *and* you don't have to add it to each individual <img>
    tag.
    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
    ==================
    "Dan.Smith" <[email protected]> wrote in
    message
    news:gn22if$i6k$[email protected]..
    > border="0"
    >
    > <img src="myImage.jpg" alt="a" width="22" height="22"
    border="0" />
    >
    > --
    > Dan Smith > adobe community expert
    > Flash Helps >
    http://www.smithmediafusion.com/blog/?cat=11
    > twitter:
    http://twitter.com/dmode
    >

  • Border around link image

    I placed an image, then linked it. Now I have a bright blue
    box around it. Any ideas on why it is doing this?

    Use CSS with this rule -
    a img { border:none; }
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "cdeatherage" <[email protected]> wrote in
    message
    news:el1sem$snk$[email protected]..
    > The default designation in most browsers indicates links
    by changing the
    > text
    > to blue and adding an underline or placing a blue border
    around an image.
    > [The
    > end user can change that in his/her browser preferences,
    but that is
    > another
    > issue.] Because you made the image a link, your browser
    is showing the
    > border
    > around the image.
    >
    > The only way you can get around that is, in DW go to
    page properties and
    > re-set the colors for links to something that you like.
    If this image is
    > the
    > only link on your page, you can just make the links
    colors the same as
    > your
    > background, and it will disappear. If you have other
    links on the page,
    > however, this isn't going to be practical because they
    will disappear, and
    > that
    > would not be a good thing.
    >

  • Purple border around my link!!

    Hi all,
    I hope someone can help, I'm fairly new to Dreamweaver and am
    having an issue with link colours.
    Basically I wanted a white border around various links when
    you hover over them. I do have that, but before you hover over it
    there is a purple border around them that I can't get rid of. It
    seems to only affect my .jpg's not my .gif's.
    It's most likely something I've done :)
    Many thanks,
    Mark
    P.s. I'm using CS4 and only the design page.

    Hi all,
    I hope someone can help, I'm fairly new to Dreamweaver and am
    having an issue with link colours.
    Basically I wanted a white border around various links when
    you hover over them. I do have that, but before you hover over it
    there is a purple border around them that I can't get rid of. It
    seems to only affect my .jpg's not my .gif's.
    It's most likely something I've done :)
    Many thanks,
    Mark
    P.s. I'm using CS4 and only the design page.

  • Border around some links...

    Borders around menu options on certain pages and not sure why
    I created the pages in Photoshop, used Imageready to output
    my site to HTML, then linked everything in Dreamweaver.
    On most of the pages there are no problems, but certain pages
    http://www.fcsafehouse.com/classes.html
    * have a border around the menu item.
    I checked the slices and made sure there was no gap in
    between spacers and menu item.
    Um help??
    Also have odd spacing once I added links to the menu on
    contact page

    Use CSS -
    a img { border:none; }
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Lonewulph" <[email protected]> wrote in
    message
    news:fbfd53$g0i$[email protected]..
    > Borders around menu options on certain pages and not
    sure why
    >
    > I created the pages in Photoshop, used Imageready to
    output my site to
    > HTML,
    > then linked everything in Dreamweaver.
    >
    > On most of the pages there are no problems, but certain
    pages *
    >
    http://www.fcsafehouse.com/classes.html
    * have a border around the menu
    > item.
    >
    > I checked the slices and made sure there was no gap in
    between spacers and
    > menu item.
    >
    > Um help??
    >
    > Also have odd spacing once I added links to the menu on
    contact page
    >

  • Border around a picture tha hav a link

    When i put a link to a picture, I see a border around the picture when I open the page in IE, but not in Crome. Is it possible to not see the border in IE?
    Knut Erik

    Sure - use this CSS rule:
    a img { border:none; }

  • Border around links

    Just bought CS3 and dreamweaver adds a blue border to a link
    when a pic is inserted. anybody know why or how to turn it off?
    Thanks
    gcs

    CS3 wants you to learn/use CSS.
    1] Select the image on the page and type 0 for the Border in
    the
    Property Inspector.
    2] Or better - add this to your CSS to remove the border
    around every
    image link:
    a img {
    border: none;
    Alec
    Adobe Community Expert

  • Changing thickness of border around fields

    Hi
    Is it possible to change the thickness of the border around a database field/ text box etc? I can only find an option to choose the type of border (Single, Dotted, Dashed etc), but not the thickness.
    The field that I use in the report has the Can Grow property set to True as well.
    I use CR 2008.
    Thanks

    Hi
    @V361-V361
    No, I cannot control the size of the text. So I guess there is no work around to this problem...
    @wickedweapon
    I have just started using Crystal Reports. But it is possible to write formulae (Basic Syntax) to select the type of border.
    If {Table.ColumnName} > value Then
          crDoubleLIne
    Else
          crSingleLine
    End If
    If you write the above code in the top margin section, then the border changes depending on the column value.
    Hope this has helps...
    Tanya

  • I have a black border around my video and I would like it to be full screeen

    I am running Premier Elements 10 on a PC and I am getting a black boarder around the video and I have rendered it multiple ways.   Is there a way to get it gone?  This is the link for youtube.  HCC 2014 video Final - YouTube
    Thank you
    Bruce

    Answers in CAPS.  But from playing with the file, it does not appear that I can get rid of the black border.   I would have to start again from scratch.    I tried a FV4 file format and a AVCHD.mp4 format and they both have black borders.   Any other suggestions on how to get rid of the border, or is it impossible at this point.
    Thanks Bruce KeenanPresident, Himalayan Children's Charitieswww.hccnepal.org
          From: A.T. Romano <[email protected]>
    To: Bruce Keenan <[email protected]>
    Sent: Thursday, November 6, 2014 6:14 PM
    Subject:  I have a black border around my video and I would like it to be full screeen
    I have a black border around my video and I would like it to be full screeen
    created by A.T. Romano in Premiere Elements - View the full discussionBruceKeenan Thank you for the reply with a lot of important details. With a 99.9999% certainty, I believe you issue is thata. you used 4:3 project settings for 16:9 source mediab. when you imported that 16:9 source media you used it as is without scalingit to get rid of the black border at the top and bottom of the frame caused by the 16:9 source ina 4:3 project. Apparently when you opened the new project, you accepted the default which is NTSC DV Standard 4:3 insteadof changing that to the project preset that would best match the properties of your source 16:9. For you to check out... a. Open a new project and, in the new project dialog, click on change settings, followed bychanging the project preset toNTSCDSLR1080pDSLR [email protected]   
    I OPENED A NEW PROJECT AND THE STANDARD SET WAS NTSC-DV-STANDARD-48kHz WHICH IS MY PROBLEM AS YOU POINTED OUT.    
     b. If you really want a F4V file HD, thenShareComputerAdobe Flash Videowith Presets = F4V - HD1080p (Flash 9 and Higher) If you want a MPEG2 file (SD), thenShareComputerMPEGSwith Presets = NTSC DVD Widescreen If you want a MPEG2 file (HD), thenShareComputerMPEG2with Presets = HDTV 1080p 29.97 High Quality If you want to explore with an AVCHD.mp4 file (HD), thenShareComputerAVCHDwith Presets =  MP4 - H.264 1920 x 1080p30 Lots to explore. And, there should be no black borders anywhere. If any questions or needclarification, please do not hesitate to ask. Thank you. ATR Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6906984#6906984 Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:  To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Premiere Elements by email or at Adobe Community For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Unwanted border around swf file in IE

    Can anyone tell me why I am getting a border around my swf
    file with it is imbedded on a Html page and displayed in Internet
    Explorer on a PC?
    The swf acts as a link, (pointer becomes a finger), and when
    you click once in the swf area, the border disappears and the swf
    file becomes active and all other links are working .
    See f.ex.
    http://www.soundoil.com
    I am not getting this when viewing the site in other browsers
    or on the Mac.
    I use Golive CS and Flash MX.
    It looks like this is an IE issue. Do you know of a
    workaround?
    Thanks on beforehand
    ggaarde

    I've noticed, not just in this thread but all the other "10
    billion threads about this," that every single one of the fixes for
    this problem are oriented towards webpage developers -- not for the
    internet user. Forgive me if these forums (unbeknownst to me) are
    actually dedicated solely to web developers, but I'd still like to
    find a solution somewhere for this problem.
    An example of the problem I'm facing. The average Joe (such
    as myself) is browsing around webpages (including, for example, the
    webpage for my online homework) that haven't implemented a fix for
    this problem .... Thus, for every ActiveX control, forcing me to
    click it first before being able to use it. Just seeing this once
    isn't a big deal, but when it comes down to doing a slew of
    frustrating homework problems, and being forced to do an extra
    click at least once for every single problem ... that just becomes
    one extra irritant. And it's a problem on a lot of other webpages
    too.
    I obviously can't use the "fixes" provided in these topics,
    because they're
    coding fixes; I can't very well go in and alter commercial
    webpages. Of course, I could go and demand the Tech Support guys
    for
    every webpage I visit to adjust their websites and make
    accomodations for this problem. But that seems like a dumb choice,
    especially if there's a solution of some sort. Maybe a downloadable
    update, or an option in Internet Explorer's settings. Is there
    anything out there for the
    user to fix this problem? Or am I SOL? Perhaps I just need
    to "suck it up."
    Thanks in advance.

  • White border around images in Easy Rotator

    I would like for there to be a small white border around my images when i put them into easy rotator.  I really just want there to be about a 5 px space around them that is really just the background.  I cant seem to find the right place in the code to make the div that holds the background color... which is white...to make it have like a 5 px padding..
    or even make a 5 px margin around all images.
    I even tried to place the border around my images when placing them in the rotator but the top still pushed all the way up and there was only the white space on the left right and obviously the bottom where the dots are that shows which number slide I am on.
    Where in the code will I find this so I can manipulate it... thanks again for always helping
    avery

    Without a link, it's all guesswork. 
    Use Chrome or Firefox to preview your page.  Right Click and select Inspect Elements.  This should give you some idea of which CSS selectors are used by Easy Rotator.
    Nancy O.

  • Black border around screen

    Hello, I'm not entirely sure when this started but I have an annoying 1/4" black border around my screen. I think it has to do with scaling, but can't find an option within the integrated Intel HD Graphics to change built-in monitor.  This notebook has Intel HD graphics 4400, and is running the most current Intel Graphics HD and WIndows 8.1. Any help would be appreciated.  Thanks!

    , Hello and thanks for posting on the HP support forums.  The first step you should try is a system restore back as far as you can go.  This will change your configuration back and remove any updates that may have caused this. HP PCs - Using Microsoft System Restore (Windows 10,8) Here are a couple other links that may be of help. HP Notebook PCs - Troubleshooting a Notebook LCD Panel Issue (Windows 8/8.1, 7) And. HP Notebook PCs - Resolving Problems with Notebook Displays (Windows 7 and Windows 8) Please let me know how things go. Thanks again for posting and have a great day.

  • Red Border Around Logo on PC browsers

    There is a thin red border around the logo on the site I am creating. I am on a Mac and didn't notice this issue until I was troubleshooting on a PC. The red border only appears on PCs.
    I viewed my site in Firefox, Safari, and Chrome on the mac. No red border.
    I viewed the site in IE and Firefox on PCs. Red border.
    Anybody know the issue? (I'm thinking it has something to do with the a link values because the color changes from red to blue after the image is clicked.)
    http://www.jgraveslawyers.com
    a:link {
    text-decoration: none;
    color: #900;
    background: transparent;
    a:visited {
    text-decoration: none;
    color: #006;
    background: transparent;
    a:hover {
    text-decoration: none;
    color: #F00;
    background: transparent;
    a:focus {
    text-decoration: none;
    color: #fff;
    background: #6196BC;
    a:active {
    text-decoration: none;
    color: #600;
    background: transparent;

    It doesn't have to do with that.  You need to remove the border from that instance.  Now you could use:
    a img { border: none; }
    But that would eliminate the borders from around all images. If you only want the one image to have no border around it you should just have to use the border: none attribute on the img tag (ie: style="border:none;" inside the <img> tag).

Maybe you are looking for

  • New IPad 3 will not connect to 2WIRE from AT&T

    Hi, I just bought the new IPad and its taking me through the setup screens, when I get to the wi-fi setup I see my router (2WIRE) I click on it, I put in the password and it says "Not correct Password" I know it is the correct password, I even change

  • New computer with external hard drive...

    Current setup has iTunes Library, all files, located on an external hard drive....I'm going to implement a new laptop shortly, and will download the latest version on iTunes when I set it up..... I'll have the destination for music point to that exte

  • Changing the accounting information on an SC

    Hi there I am having difficulties getting the account information on a shopping cart updated using BBP_PD_SC_UPDATE. The background in short: 1) I have created a a field in CI_BBP_ACC 2) I read the details of a given SC with BBP_PD_SC_GETDETAIL 3) I

  • Save a project in iMovie

    Hello, I imported my video data to the media part of iMovie. The data is still visible after closing/re-opening iMovie. Now I wanted to create a project with some of my media data. I created the project, moved the data to the project. As I could not

  • Upgraded to 10.4 - Session and Backup Errors

    Hello All, I just upgraded to 10.4 and now my IPhone 4 is having issues syncing.  First it was stuck in a verify mode.  Then the backup would not work.  I deleted all of my backups and tried again.  I either get a message saying that a backup could n