The simpler media website CMS
Forum search only. You might also want to search on the main site's user guide.
Forum RSS
Visit the troubleshooting guide.
Visit the paid support page.
Your support helps pay for this server, and helps development of zenphoto. Thank you!
Visit the donations page
Comments
http://www.zenphoto.org/documentation/plugins/_zp-extensions---image_album_statistics.php.html#functionprintLatestImages
This is the code I added:
<h2><?php echo gettext('Ultimas Imagenes'); ?></h2>
<div align="center"><?php
printLatestImages(4,'',false,false,false,40,'',79,79,true,false,false);
?></div>
printLatestImages(4,'',false,false,false,40,'',79,79,false,false,false);
Could be my problem related with where I added the code ?.
I added it before --> </div><!-- content left-->
I can see like little dots before the images, maybe the format there is some kind of list, I don't know.
This is the link : http://photoshopsp.nixiweb.com
The output of the function is a div with a list.
You will have to use CSS to style the list to get rid of the dots and show the images next to each other.
Many thanks for your support.
Start with putting this in `style.css` (in your theme folder)
`
div#latest ul {
list-style: none;
}
div#latest ul li {
display: inline;
}
`
Many thanks again.
I added this:
#latest {
margin: 0;
padding: 0;
}
#latest img,
.image {
width: 79px;
height: 79px;
border: 1px solid gray;
margin: 5px 5px 0px 0px;
float: left;
}
div#latest ul {
display: inline;
}
div#latest ul li {
float: left;
list-style: none;
}
Best Regards.