Could someone please examine my css file on my website and tell me how to remove the blue border around my images? The website: http://codefusionlab.co.cc The css files: http://codefusionlab.co.cc/wp-content/themes/gridfocus/style.css Thanks in advance!
While that works a better solution would be to add img {border: none;} Code (markup): to you CSS file. Unless you only want one image to have no border.
Rep added. The whole point of using CSS is to escape from using HTML markup to change visual aspects.
+1 dlb You can also use img { border: 0; } If you use a CSS it will make your HTML code fitter (can we say that ?! sorry i come from france and my english is not always very well) and it will may be valid with W3C rules.