This is a screen width issue rather than a device issue. You can reproduce it on a PC/MAC simply by making the window smaller.
I tracked it down to a media query in your WordPress theme.
The Slickr Flickr slideshow is behaving correctly; it is the theme that is the issue.
It sets the container element’s height to zero and 50% padding at the top pushes the slideshow behind other elements, leaving the blue square.
@media screen and (max-width: 885px)
.blog .site-content .hentry, .archive .site-content .hentry, .search .site-content .hentry {
width: 50%;
height: 0;
padding-top: 50%;
}
If you remove the height and padding restrictions the slideshow is visible and plays correctly.
(However I do not why your theme would wants to set the height to zero so you need to check for yourself if this change has any undesired side-effects)