Showing item type icon in mobile devices

Please Note: Theme customizations go beyond the scope of our support services and this article is provided solely as a courtesy to our customers. Please take a moment to review the Scope of our Support.

By default, for simplicity, we have hidden the item type icon for mobile devices. However, if you would like to have it displayed, you just have to add the following CSS into the Expression Options -> Styles -> Additional Styles section:

.mobile .view-gallery {
border-width: 0;
display: block;
}

.mobile .item-num, .mobile .view-text {
display:none;
}

.mobile .grid-gallery-icon {
border-width: 0;
float: right;
margin-bottom: 5px;
margin-right: 5px;
}

.mobile .content-box h2 {
width: 95%;
}

Here is how it should look like on mobile devices after the modification applied:

Was this useful? 0