Skip to content

Commit

Permalink
added in missing span to prevent text overlapping
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Lodder committed Apr 8, 2014
1 parent 96d53f3 commit 46a6d19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod_social_slider/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
{
if ($parts[1] < 16)
{
echo '<li class="' . $key . '"><a href="' . $params->get($key . '_link') . '"' . $target . '>' . JText::_('JJ_SOCIAL_SLIDER_VIA_' . $uppercase . '') . '</a></li>';
echo '<li class="' . $key . '"><a href="' . $params->get($key . '_link') . '"' . $target . '><span class="jj_social_text">' . JText::_('JJ_SOCIAL_SLIDER_VIA_' . $uppercase . '') . '</span></a></li>';
}
else
{
echo '<li class="' . $key . '"><a href="' . $params->get($key . '_link') . '"' . $target . '>' . $params->get($key . '_text') . '</a></li>';
echo '<li class="' . $key . '"><a href="' . $params->get($key . '_link') . '"' . $target . '><span class="jj_social_text">' . $params->get($key . '_text') . '</span></a></li>';
}
}
}
Expand Down

0 comments on commit 46a6d19

Please sign in to comment.