Link to home
Start Free TrialLog in
Avatar of DrEddieS
DrEddieS

asked on

Blue Border

How do I remove the "Blue Border" on my wordpress images?
Avatar of Prasadh Baapaat
Prasadh Baapaat
Flag of India image

Hi Dr,
It is most probably the .thumbnail CSS from bootstrap ... when you hover mouse on image, the css gives a blue border to images which have a class of .thumbnail

here is how you can check the actual class of the image:
1) open the website page with image in Firefox
2) right click on the image and select INSPECT ELEMENT as in the image 1
3) check the class name as in image 2
User generated imageUser generated imageto remove the blue border add this code on last line of your CUSTOM CSS (change .classname to the class name you find)

.classname, .classname:hover {
    border: none;
}

Open in new window


IF THERE IS NO CLASS TO IMAGE, then add below class

img, img:hover {
    border: none;
}

Open in new window

hope it helps.
thanks,
Prasadh
Avatar of DrEddieS
DrEddieS

ASKER

Not what I am look for. How do I remove the Blue  from the bottom of my pictures.?

http://459.548.myftpupload.com 
ASKER CERTIFIED SOLUTION
Avatar of Prasadh Baapaat
Prasadh Baapaat
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial