我在Joomla有一个投票插件,其中有一行中的星标和评论文字。但是星星的位置比文本高一点。我试图用css / span向下移动星星,但我不能让它移动。
Ex:打印。 dk / folieprint
代码:
$final_avgreview_data = '<div itemscope itemtype="http://schema.org/Article"><span style="display:none;" itemprop="name"> '.$title.' </span><span itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">';
$final_avgreview_data .= '<span class="redshop_stars"><img src="'.REDSHOP_ADMIN_IMAGES_ABSPATH.'star_rating_ny/'.$avgratings.'.gif" /></span>';
$final_avgreview_data .= JText::_('COM_REDSHOP_RATING' ).' <span itemprop="ratingValue"> '.$avgratings.' </span> '.JText::_(' ' );
$final_avgreview_data .= JText::_('COM_REDSHOP_AVG_RATINGS_1' ).' <span itemprop="ratingCount"> '.$totalreviews.' </span> '.JText::_('COM_REDSHOP_AVG_RATINGS_2' );
$final_avgreview_data .= '<span style="display: none;" itemprop="bestRating">5</span>';
$final_avgreview_data .= '</span></div>';
Css:
span.redshop_stars {
margin: -10px 0 15px 0;
line-height: 11px;
padding: 0 0px !important;
}
我如何将星星移动一点?