Hello.
as we all know , search engines index many part of your site . images are also included . as such , images contain both alt and title . having some information for your image , not only will help visually impaired users , but also help your site to rank much better on the net.
currently osclass image ALT and Title is not pulling anything . but you can fix that easy. you need to alter 3 files from your theme file section .
main.php
item.php ( for item.php i suggest only alt tag for large image )
search_list.php
i used the following code for ALT tag
alt = "<?php echo osc_item_title() ; ?>"
and for TITLE tag
title =" <?php echo osc_highlight( strip_tags( osc_item_description() ), 25 ) ; ?> "
osc_item_description will pull listing description , but i did limit the description in this case to 25 characters .you can increase or decrease the number . or you can apply only php code with in alt tag to both alt and title tag.
hope this helps out .