• Hai folks,
    I have my own (Dutch) Nintendo website. And every day there are screenshots to be published. But it’s not very good without a border. Is there a plugin to get a border on a image?

    Like this:

    http://www.ninplay.nl/?p=465

    But than with a border?

Viewing 1 replies (of 1 total)
  • Don’t need a plugin for that. Just define the border in the style sheet.

    Look in style.css for …

    img {
    	border: none;
    }

    and change it to whatever you want such as …

    img {
    	border: 2px #000;
    }

    A caveat: this will put a 2px wide black border around ALL images. If you only want a border around images in posts then leave the above alone AND add to the style sheet …

    .post img { border:2px #000;} or some such thing.

Viewing 1 replies (of 1 total)

The topic ‘Borders?’ is closed to new replies.