Light Blue Border around images

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Light Blue Border around images

    :frown;
    when I first put an image up on my website it came up published with a light
    blue border which placed itself a few pixels away from the image. I really like
    the look. When I changed the image it now has a black border that run the edge
    of the image. Does anyone know how to get the blue border back?

    vickyjs Guest

  2. Similar Questions and Discussions

    1. light blue bg of bandwidth component
      How do you change the light blue color of the highlight of the bandwitdth controller (communication component) I am sure it is the same with alot...
    2. Illustrator creates a thin light border when prepared for web
      I have an RGB document that I slice and save for web, and when I change the background color on the html document that was generated, a thin light...
    3. Dotted border around rotated placed images in PDF...
      Hi all - Sorry in advance if this is a newbie question, etc. Here's my issue: I'm getting a very light dotted border around an placed .tif file...
    4. gray looking light blue after saving as EPS
      I'm trying to generate EPS files that are "gray scale" using Illustrator. I'm using CMYK mode in Illustrator 10, and my figures look gray. But...
    5. Enhance Handwriting in low-light, low-contrast images
      I am sure that there are some specialised techniques and this is a good place to look for them. Apart from the obvious tools to adjust contrast ,...
  3. #2

    Default Re: Light Blue Border around images

    it can be lots of things like you gave a link to picture and thats why it had blue border.

    or image border color was blue because of the CSS.

    can you provide the URL or code?
    gx280 Guest

  4. #3

    Default Re: Light Blue Border around images

    [url]www.madriverhospital.com[/url] ( photo that is black now)
    [url]http://madriverhospital.com/services/PainClinic.htm[/url] (has the blue border I want.
    vickyjs Guest

  5. #4

    Default Re: Light Blue Border around images

    You used
    img.float-right {
    float:right;
    padding:3px;
    margin: 5px;
    border:1px solid #56919C;
    }
    solution: ( i just added float-right class to your img line)
    <img src="images/mrchphoto104.gif" alt="Shaw Paviliion" width="206"
    height="153" hspace="6" vspace="6" border="1" align="right" class="float-right"
    >
    gx280 Guest

  6. #5

    Default Re: Light Blue Border around images

    However , i would like to warn you that that class will put your image to right
    side.. so if you just want to use the border part of it:

    create another class and add it to your css
    img.ilovethisborder{
    padding:3px;
    margin: 5px;
    border:1px solid #56919C;
    }
    and replace class="float-right" with class="ilovethisborder"


    gx280 Guest

  7. #6

    Default Re: Light Blue Border around images

    ohh and you used big picture and resized it with coding on
    [url]http://madriverhospital.com/services/PainClinic.htm[/url]

    so please use this picture for crew2 :: [url]http://startgoogle.com/crew2.jpg[/url]

    i resized it for you.

    gx280 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139