Hi,
ich würde gerne die größe der einzelnen Bilder anpassen, dafür gibt es auch, soweit ich das sehe, eine style.css datei des plugins, die ist aber inaktiv und ich weiss nicht wie ich sie aktivieren kann, in den optionen des widget gibt es zwar die möglichkeit "add css styling". Wenn ich da nen hacken setze passiert aber nichts. die einzige andere datei des plugins wo die style css im code vorkommt ist die flickerpress/flickr.php
da sieht der code so aus:
Code
}
if ( !is_admin() ) {
// Include CSS if requested to
foreach ( $options as $id => $values ) {
if ( $values['css'] ) {
wp_register_style('flickrpress_css', WP_PLUGIN_URL.'/flickrpress/style.css');
wp_enqueue_style('flickrpress_css');
break;
}
die style.css sie so aus
Code
.flickrpress-container {
overflow: auto;
}
.flickrpress-container div {
float: left;
background: white;
padding: 2px;
margin: 4px;
border: 1px solid #DDD;
}
.flickrpress-container div span {
/* See below */
display: none;
}
/* Styling from http://www.webdesignerwall.com/tutorials/css-decorative-gallery/
* Note: This will generally only work with square thumbnails. */
/*
.flickrpress-container div img {
width: 58px;
height: 58px;
position: relative;
}
.flickrpress-container div span {
z-index: 1;
width: 58px;
height: 58px;
display: block;
position: absolute;
background: url(images/flickr-border.png) no-repeat;
}
*/
/* Download iepngfix.htc from http://www.twinhelix.com/css/iepngfix/ then create ie.css with the following,
and link it in to your template's header.php:
<!--[if lt IE 7]>
<link rel="stylesheet" href="/path/to/ie.css" type="text/css" media="screen" />
<![endif]-->
*/
/*
.flickrpress-container div span {
behavior: url(iepngfix.htc);
}
*/
Alles anzeigen
wer super wenn mir php kundiges jemand helfen könnte. danke!