You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've found out when using multiple post terms, there is a comma separator added automagically. This is fine, except for the fact that this element cannot be reached with CSS styling.
I would like to propose changing:
//Everything but the first term needs a comma separatorif($is_first == false)
{
$title .= ', ';
}
to something like this:
//Everything but the first term needs a comma separatorif($is_first == false)
{
$title .= '<span class="separator">, </span>';
}
When wrapping it in a HTML tag, it can be altered. (In my case hidden on small screens)
The text was updated successfully, but these errors were encountered:
I've found out when using multiple post terms, there is a comma separator added automagically. This is fine, except for the fact that this element cannot be reached with CSS styling.
I would like to propose changing:
to something like this:
When wrapping it in a HTML tag, it can be altered. (In my case hidden on small screens)
The text was updated successfully, but these errors were encountered: