Successfully integrated my flickr photos to my blog powered by WordPress. You can view them by clicking on the ‘Photos’ link in the header. I used FAlbum plugin to accomplish this, set up was done with very minimal changes to the code. I just had to modify the style sheet file [../styles/default/falbum.css] of FAlbum as below to get it work well with the current theme. Look for the following block of code & modify as shown.
.falbum {
padding: 0px;
margin: 0px;
clear: both;
width: 99%;
min-width: none;
replace the above block with
.falbum {
padding: 0px;
margin: 0px;
clear: both;
width: 500px;
float:left;
min-width: none;
}
Thats it! you are all set to view your flickr photos in your wordpress blog.
Leave a Reply