Image gallery view

Posted by Community Admin on 03-Aug-2018 10:36

Image gallery view

All Replies

Posted by Community Admin on 02-Jun-2011 00:00

Hi There,

I've upgraded to SF 4.1 SP 1, but now my image gallery has stopped working. When I pick the list with lightbox, the list is displayed vertically, and I see no property on the designer to set the flow layout. I've used firebug to check the source and it seems that there is no stylesheet loaded for the widget. I searched for the style class fimagesTmbList but could not find it. Is this a known issue? If so, what is the work around?

Regards,
Jean Erasmus

Posted by Community Admin on 02-Jun-2011 00:00

Hi Jean,

I tested if the image gallery will break with upgrade and it did not. The css for proper display of lightbox is missing and you will need to manually add it. One way is to add in the Theme you are using, or using a css widget on the page.

.sfimagesTmbList .sfimagesTmb
    display: inline-block;
    height: 120px;
    overflow: hidden;
    padding: 10px;
    width: 120px;
.sfimagesTmbList a
    display: block;
    height: 120px;
    overflow: hidden;
    text-align: center;
    width: 120px;
.sfimagesTmbList img
    vertical-align: middle;

Examining a properly working image gallery the css missing is display: inline-block;. You can examine a working project with firebug to add any more css that you need.

Hope this information helps you.

Best wishes,
Stanislav Velikov
the Telerik team
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

This thread is closed