Dazed:
How can I change the audio item detail page so that when viewed in mobile, the song review thumbnail images are not full size? They look blurry as can be since they were originally thumbs. Not to mention if there are many comments, it is a scrolling nightmare hehe.
Thanks
This is due to the column layout, the image size being set to small and the img_scale class being used.
You can fix this one of two ways....
1. Change the image size to something larger, the layout would look the same on mobile but the image should be much clearer.
modules/jrComment/templates/item_list.tpl around line 18, change this:
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="small" crop="portrait" alt=$item.user_name class="action_item_user_img iloutline img_scale"}
to this:
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="large" crop="portrait" alt=$item.user_name class="action_item_user_img iloutline img_scale"}
2. Add this code to the image function, same file same line:
Change this:
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="small" crop="portrait" alt=$item.user_name class="action_item_user_img iloutline img_scale"}
to this:
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="small" crop="portrait" alt=$item.user_name class="action_item_user_img iloutline img_scale" style="max-width:70px;max-height:70px;margin:8px;"}
#2 will make the layout more like the desktop layout.
We'll get a fix in for the next release.
Hope this helps!
--
Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos