My problem is that I need to add a space and change the font to a smaller one, with italics.
Here is my code:
$output .= '<tr> '.
' <td class="contentfont"> » <a href="' . $subcat_link . '">' . $category_lang[$cat_details['category_id']] . '</a>'.$cat_details['items_counter'].'</td> '.
'</tr> ';
I would like to add a space and change the font for this portion:
</a>'.$cat_details['items_counter'].'</td>
How should I do this?
After the
</a>, add <font size="#"><em>, and right before the</td>, add</em></font>?It’s practical.