Page 1 of 1

Coppermine plugin - removing black border around thumbnails

Posted: Wed Aug 10, 2005 2:51 am
by Chris
Hi everyone,

I've just installed 0.8.3 (after accidentally deleting my blog directory !) and I've also installed the Coppermine plugin (serendipity_plugin_coppermine) via Spartacus.

I notice that there are black borders around the thumbnails of each photo (see my blog for example - http://www.christopher-chan.com/blog/index.php). How can I turn that the black border off ?

The previous version of this plugin that I was using with my 0.8 installation did not have black borders.

Thanks !

Chris

Re: Coppermine plugin - removing black border around thumbna

Posted: Wed Aug 10, 2005 3:36 am
by garvinhicking
The plugin loads additional Style information from the "styles.css" file. There it defines:

Code: Select all

/* thumbnail img element */
.cm_thumbnail {

	border: 1px solid #000000;

}
You can set this to border: 0px; to remove the border...

Regards,
Garvin

Posted: Wed Aug 10, 2005 7:21 pm
by Chris
Thanks Garvin !