Image Border Colour

I started off with my borders on my images being black. I
previed etc no problem. Then after working on the rest of the site
they have changed to purple when I preview- but not in Dreamweaver
where they still show as black.
I have checked all teh link colours etc and am bemused. Any
suggestions please?

To remove borders from linked images, insert this CSS code
between the
<head> and </head> tags in your html page.
<style>
a img {border:none}
</style>
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"emilyt.w" <[email protected]> wrote in
message
news:fs18k8$4gl$[email protected]..
> I started off with my borders on my images being black.
I previed etc no
> problem. Then after working on the rest of the site they
have changed to
> purple when I preview- but not in Dreamweaver where they
still show as
black.
>
> I have checked all teh link colours etc and am bemused.
Any suggestions
> please?
>

Similar Messages

  • How do I change an image border color to another color - Dreamweaver CS5?

    Good day,
    I have just learned how to add a border to an image with Dreamweaver CS5 within the Properties Inspector.
    After typing the width in pixels in the Border Text Field and pressing the Enter key, Dreamweaver created a black border.
    How do I change the image border color to another color?

    I added your suggested rule to the Style Sheet "in any order" as you explained. See the image below.
    However this did not change the image border from black to light blue. In fact, nothing changed.
    Nothing changed because the CSS that has been written into DW is incorrectly written.
    You want the following (exactly as written below)
    img {border: 4px solid #0062C8;}
    You've inadvertently wrapped the rule inside a #main_image container rendering it meaningless.
    It's easiest to go into Code View and change
    #main_image {
         img {border: 4px solid #0062C8;
    to
    img { border: 4px solid #0062C8; }
    The Property Inspector added a border exactly as I wanted it, other than the color I wanted the border to be. What is the use of this function in Property Inspector if it can add a border within Property Inspector but not let me change the COLOR of the black border that Property Inspector added, to another color?
    That's a deceptively simple, yet valid, question with a long answer.
    Back in the dark old days of web design web designers were restricted to inline HTML formatting which offered  border properties but no colors.
    CSS styling offers colors and more but has to be written differently.
    These days. it's best to avoid HTML formatting. Unfortunately border="4px" in the PI still allows it. But does not permit color.
    Does anyone else out there ever add color borders to their IMAGES (not the containing box for the image) ?
    Yes, using CSS.

  • How to set image border with CSS Designer?

    I must be missing something obvious...
    I need to set an image border. I select the image. But I don't see any relevant inline style option in CSS Designer.
    It only lets me change <inline style> : td but there's no option for the image.
    What am I missing?
    Thanks,
    Leo

    Thanks John,
    Yes, obviously I select the image.
    However, it doesn't change anything.
    I don't get the "img" selector whatever choice I select it the Sources pane.
    What am I missing?

  • How to convert a black and white tif image to colour

    I want to convert a black and white tif image to colour. I opened it in Photoshop, changed the mode to RGB colour/8, saved it as psd, but when I use the Replace Colour dialogue box, I just get my colour showing as grey-scale. What’s the correct way to proceed?
    Thank you

    What’s the correct way to proceed?
    Joke?
    In Photoshop there are often more ways than one to achieve a task and none of them need be considered »wrong« as long as the result fits the intention, so »the correct way« seems to be problematic terminology.
    Anyway, one can use a Layer set to Blend Mode Color and paint on that with whatever colors.
    Or one can use Solid Color Layers set to Blend Mode Color.
    Or Hue/Saturation Layers …
    To edit contrast if necessary Curves or Levels Adjustment Layers can be employed.
    You could also have googled »photoshop colorize black and white« …

  • Image border property

    Hi
    I just upgraded to Dreamweaver 12.2 and want to know what happened to the tag panel where I could add an image border?
    Has it be "depreciated", moved or integrated with a different dialog panel?
    Thanks
    Rose

    littlelili wrote:
    Hi
    Has it be "depreciated"
    Yes,
    You now need to use css to set a border like:
    #myContent img {
    border: 5px solid red;

  • URGENT - how do I convert and image from colour to black and white?

    Hi,
    I'm new to Java, and I really need some code to convert an image from colour to black and white! I would really appreciate any help, but since I don't know much about Java I would prefer some code or links to websites with the code.
    Thanks!!!

    http://forum.java.sun.com/thread.jsp?forum=5&thread=368759

  • I was using photoshop CC as normal, when suddenly it started going haywire. It has corrupted all the one PSD files by distorting the images and colour. Does anyone know how to recover the original images?

    I was using photoshop CC as normal, when suddenly it started going haywire. It has corrupted all the open PSD files by distorting the images and colour. They are now completely unrecognisable and unusable. Does anyone know how to recover the original images as I was saving them as I went along but the files are now corrupt?

    What version of Photoshop are you running?
    I've seen a couple of instances over the last week or two where Photoshop has added masks, strange colours and also merged content from two separate PSD files that were open at the same time.
    This has occurred on two different iMacs, (both 10.10.x) running Photoshop CC 2014.2.2 (20141204.r.310 x64).
    see image below for example:

  • Border colour of Free Text Annotaion

    Hi
    I'm using the SDK to Acrobat 9.1 pro, writing a plugin in c++. I wish to change the colour of the border of a free text annotation. I've tried a couple of techniques but they only result in changing the fill colour of the annotation:
    PDColorValueRec colourRed;
    memset(&colourRed, 0x00, sizeof(colourRed));
    colourRed.space = PDDeviceRGB;
    colourRed.value[0] = fixedOne;
    colourRed.value[1] = fixedZero;
    colourRed.value[2] = fixedZero;
    PDAnnotSetColor(annot, &colourRed);
    CosObj arrayObj, floatObj;
    arrayObj = CosNewArray(cDoc, false, 3);
    CosArrayPut(arrayObj, 0, CosNewFloat(cDoc, false, 1));
    CosArrayPut(arrayObj, 1, CosNewFloat(cDoc, false, 0));
    CosArrayPut(arrayObj, 2, CosNewFloat(cDoc, false, 0));
    CosDictPutKeyString(annot, "C", arrayObj);
    I've scanned the section in the PDF specification regarding annotation dictionaries, and it seems the C key only governs the colour of the border when the annotation is a Link annotation, and I can't find any other way of defining the border colour. Yet I can still change the colour of the border using Acrobat, which leads me to believe that it's done in a non-standard but nonetheless valid way. The BS (borderstyle) key defines the style of the border but maked no mention of the colour of the border.
    Am I trying to do the impossible?

    Thanks Irosenth, that worked for me. I was adding a DS key to style the rich text contents, but it seems I also need to specify the DA key in order to change the border colour. For those interested, the string "1 0 0 rg /Helv 12 Tf" gave me the plain red border I was after.
    Andrew.

  • Solid table border colour?

    Hi,
    I am trying to create tables with a solid border colour.
    I have tried using CSS but I still get a grey shadow.
    This is the website URL and it is the News and Membership tables that I am trying to give a solid colour to.
    It looks fine in the design view but does not work when viewed in a browser?
    http://www.highburyminiaturedonkeys.co.uk/
    Any advise please.
    Thank you

    .border {
        border-top-color: #FC3;
        border-right-color: #FC3;
        border-bottom-color: #FC3;
        border-left-color: #FC3;
        border-top-width: 1px;
        border-right-width: 1px;
        border-bottom-width: 1px;
        border-left-width: 1px;
    That rule would certainly style any element with a class of 'border'.  But it won't happen magically.  And it won't happen at all unless you also supply the border-type styles, e.g., solid, inset, dashed etc.

  • IMAQ Low pass filter failed with invalid image border.

    Hi Expert,
    I try to use imaqLowPass function. I expect  the input image could be processed by low pass filter.
    But this is a run-time error showed "Invalid image border".
    Can somebody tell me what's going on?
    Solved!
    Go to Solution.

    Problem resolved. 
    I add a border to the image. 
    Needs to take care the border size and filter size.

  • Setting selected border colour of a JToggleButton

    Hi
    I am wanting to be able to change the selected border colour of a JToggleButton. I have already been able to do a similar thing for changing the selected background colour for the JToggleButton by:
    button.setUI(new MyUI(Color.gray));
    class MyUI extends javax.swing.plaf.metal.MetalToggleButtonUI
    Color color;
    public MyUI(Color c){color = c;}
    public Color getSelectColor(){return color;}
    however I want the background colour of the toggle button to remain the same whether selected or not (so I'm not using this).
    I realise that I can use a MouseListener to do this (I have already done that to change the rollover border colour), but it is more of a pain for the selected border colour, so I was wondering if anyone knew of a similar way to change the selected border colour to the above method?
    Thanks

    your layerpane lives on top of a container. set the
    background of the container.
    here is a sample code. In the createAndShowGUI you
    can add a line,
    frame.setBackground(Color.white) ;
    http://java.sun.com/docs/books/tutorial/uiswing/compon
    ents/example-1dot4/LayeredPaneDemo2.javaThe program uses JLabels on different layers to display the colours, I would prefer not to use a large white JLabel as my background.
    I have tried to set my JFrame background colour using-
    frame.setBackground(Color.white) ;It will not work for me

  • Image border problem

    Hoping someone can help with a pesky border problem. I'm
    working on a Mac and have no problem creating a thin, off-white
    border (2 pixels) around an image and everything seems fine. But
    after posting, the border acts like a rollover and changes colour
    as if it was a link, which it isn't, and I don't want it to change.
    Even worse, the border shows purple or blue on a PC.
    Thanks much.

    Sorry forgot the link:
    http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
    "Miguel" <[email protected]> escribió en el
    mensaje de noticias
    news:g7rlj6$qct$[email protected]..
    > Hi again.
    >
    > Only one advice. Don´t use fonts which can´t
    be seen for everybody but
    > those which have that particular font installed in their
    systems.
    >
    > In this link you can see the common fonts of windows and
    Mac.
    >
    > "Miguel" <[email protected]> escribió en el
    mensaje de noticias
    > news:g7rl6u$q4f$[email protected]..
    >> Hi.
    >> You could set a tag in your css.
    >>
    >> img {
    >> border: 2px solid #FFFFFF;
    >> }
    >>
    >> This will put a 2 pixels border with white color
    around all images.
    >> In the HOME page where the image have a grey border
    you can change the
    >> border color.
    >> Also, have do you notice that in your home page you
    have the color of
    >> your paragraph in black, like the background? this
    make impossible to
    >> read it.
    >>
    >>
    >> "markham5656" <[email protected]>
    escribió en el mensaje de
    >> noticias news:g7qg76$h5b$[email protected]..
    >>> Hoping someone can help with a pesky border
    problem. I'm working on a
    >>> Mac and
    >>> have no problem creating a thin, off-white
    border (2 pixels) around an
    >>> image
    >>> and everything seems fine. But after posting,
    the border acts like a
    >>> rollover
    >>> and changes colour as if it was a link, which it
    isn't, and I don't want
    >>> it to
    >>> change. Even worse, the border shows purple or
    blue on a PC.
    >>> Thanks much.
    >>>
    >>
    >

  • How do I stop NEF images changing colour when I click on them in adobe bridge

    Windows 7
    Photoshop CS3
    Nikon DX40
    Photos shot as NEF files
    I am experiencing a problem when I look at my NEF images in Adobe Bridge. When I load them in and look at the thumb nails without clicking on them or opening them, the images look fine. As soon as I click on the images (just to select it not to actually open it) the colours change quite dramatically and i can't get back to the original images. It looks as if a greenish tone is put onto them and some of the detail is lost.
    I have tried the obvious things like resetting to default settings etc. Does anyone have any suggestions? thanks

    function(){return A.apply(null,[this].concat($A(arguments)))}
    I am experiencing a problem when I look at my NEF images in Adobe Bridge. When I load them in and look at the thumb nails without clicking on them or opening them, the images look fine. As soon as I click on the images (just to select it not to actually open it) the colours change quite dramatically and i can't get back to the original images. It looks as if a greenish tone is put onto them and some of the detail is lost.
    Can you upload such a NEF? Use yousendit.com if you don't have web space (and post the URL for downloading here).
    Gabor

  • Camera raw images change colour in adobe bridge

    I have photoshop CS4 and import my camera raw images into Adobe Bridge.  When I view the thumbnails in bridge my raw images look vibrant and exactly like they appear on the camera but when I go to open them in camera raw edit they change colour and look washed out before I've made any changes.  Can anyone help me figure out how to correct this?

    ssprengel wrote:
    My camera is set to shoot sRGB JPGs and is set to all zeros for the brightness/contrast/saturation parameters.
    What is your camera set to as far as these basic toning settings, as well as any automatic things like DLighting or highlight compression and perhaps any custom curves or whatever that is called for Nikons?
    First paragraph - so is mine.
    Second paragraph - all other settings are neutral/zeroed/turned off, as per my post to which you responded. That is, no additional tone curves - Active D-Lighting turned OFF (why anyone would let the camera decide what to do do with highlights and shadows is beyond my level of trust) , Jpg compression is Optimal (least possible) et cetera.
    Think I now have an explanation for the different displays in ACR (and Bridge) that I have been experiencing. Took a new duplicate Jpg/Raw shot with the in-camera Picture Control set to Neutral. Now, when both the Jpg and .NEF Raw are viewed in ACR, with the ACR Camera profile set to Camera Neutral, they appear, ASAICT, identical. Saved Camera Neutral as the default ACR Camera profile. Now back in Bridge, the images also appear pretty much identical.
    I think what was happening previously was that I had failed to save Camera Standard in ACR as the default Camera profile, and it was defaulting to Adobe Standard, and hence it was rendering Raw thumbnails for Bridge to that Camera profile - hence the difference in appearance between the Jpg and Raw in Bridge. Unless I have got it completely wrong,  I think my problem is now solved.

  • Having major issues with Adobe Media Encoder (AME) - exporting with weird image flickering/colour anomalies, crashing regularly, freezing during encode...!

    Hi Guys
    I am having some real issues with Adobe Media Encoder (AME) at the moment.  It appears that I am unable to encode an h.264 for Vimeo from a Premiere Pro Project file at the moment without at least some weird image issues that are not supposed to be there.  These include weird flickering, colour changes, artefacts etc.  This is if I am lucky...often I am unable to get the process to complete as the application either crashes and tells me there has been a problem or it simply freezes and I have to force quit the application and often restart my machine.
    The problem seems to not to just be with h.264 for the web encodes but also with BluRay h.264 as well. As yet I haven't seen if there is a problem with MPEG-2 for DVD so I will check this out too!
    Does anyone else see this happening or does anyone know what might be the problem?
    I thought the Premiere Pro project might have been corrupt so tried a different project but the same issues were happening here too.
    Any help would be really gratefully received.
    Cheers
    EDIT - I have just found this online which is exactly the problem I am having! Thanks a bloody bunch Apple! 10.9.3 causing headaches for Mac Pro users | MacIssues
    Message was edited by: Alex Cameron

    Agreed, I now have a project to GET OUT, and AME crashes consistently 1/3 into the render. It appears to halt all processing after (real time) 00:02:30
    Am seriously considering uninstalling CC as I am beginning to find other issues in some apps, and going back to CS6/MC just so I can get work out. Durn it Adobe this is AWFUL!!
    Alright, let's try to be constructive instead of throwing rocks... but the frustration level is high, and I have material on deadline. Let's get with this, guys...
    What OS Win7, 64-bit
    What version of AME/PPro (Please be specific by getting the full version number in the About Adobe Media Encoder screen) 8.2.0.54 Ppro: 8.2.0 (65)
    When is it crashing (Again, the more detail here about where it was in the encoding process the better) roughly 1/3 into the sequence, always on exactly the same frame - tried replacing the clip with something different to see if it was a timeline error, and NO EFFECT.
    What is your source (PPro project or media file (what kind?)) PPro
    If the source if a PPro project, does it work when exporting directly from PPro? NO
    What format are you exporting to? H.264, QT, WM, tried everything my client can play.
    Do other formats work? MPEG2, QuickTime, etc? NO
    Have you tried with GPU rendering on? How about turning it off by switching to Software-only mode? Mine doesn't have any choice, it's software-only.
    Have you tried disabling Native Sequence Loading? (AME Preferences: General > Enable Native Sequence Loading) No effect
    Other things I tried: uninstalling/reinstalling AME, setting cache to a fast local disk.

Maybe you are looking for