Results 1 to 4 of 4

Thread: Remove blue image border from dreamweaver

  1. #1
    Join Date
    Jan 2009
    Posts
    110

    Remove blue image border from dreamweaver

    Hello friends,

    I have recently made one project in dream weaver where i am trying to make photo album which will be uploaded on the web. Everything looks great but only one think which i don't like is that each image has a blue border which looks very bad and whole of my project looks bad because of blue line border i have asked my friends about how to remove blue image border from dream weaver but they also don't know. Does anyone has idea about it ?

  2. #2
    Join Date
    Apr 2008
    Posts
    4,642

    Remove the Border from Linked Images in Dreamweaver

    To remove blue image border in dream weaver you need to follow few simple steps after which your project will how very good and hope you get appreciated by many people.

    • First select the linked image that has a blue border around it.
    • If it isn't already, open the Property Inspector by clicking on Window then Properties.
    • In the Border field, set the value to 0.

  3. #3
    Join Date
    Jan 2009
    Posts
    110

    Remove blue image border from dreamweaver

    Thanks for replying me the above methods is working for me but it takes a too much time to individual make changes to each and every image is there any code or any software will work do it for me. I guess this can be done through coding but don't know which code should i use it.

  4. #4
    Join Date
    Mar 2009
    Posts
    89

    Remove blue image border from dreamweaver

    To remove blue image border you should know some html coding so that you will understand it very easily you need to make some changes with the inline styles here is the code for that.

    HTML Code:
    <a href="http://www.techarena.in">
    <img src="/image1.png" style="border-style: none"/>
    </a>
    If you are planning to remove blue border permanently then you need to use the below code in style sheet:

    Code:
    img
    {  border-style: none;
    }
    And then make the reference that style sheet in the head element of your page:

    Code:
    <link href="/my_stylesheet.css" rel="stylesheet" type="text/css"/>
    This will automatically remove the blue border from all linked images in any page that uses that .css file.

Similar Threads

  1. Add RollOver Image in DreamWeaver....
    By Joyjeet in forum Software Development
    Replies: 3
    Last Post: 16-11-2009, 11:38 AM
  2. Change html image border color
    By Mind It in forum Software Development
    Replies: 8
    Last Post: 09-10-2009, 08:47 AM
  3. Dreamweaver: No Border options in Properties
    By PasadenaDave in forum Windows Software
    Replies: 3
    Last Post: 22-08-2009, 11:36 AM
  4. Dotted Border in a Image
    By Fantastic Zero in forum Technology & Internet
    Replies: 3
    Last Post: 30-06-2009, 08:07 PM
  5. Black border to image
    By Kelvin Little in forum Customize Desktop
    Replies: 1
    Last Post: 12-12-2008, 01:28 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,564,429.86065 seconds with 17 queries