Re: Remove Date/Time from Recent Topics Widget
Posted: Sat Sep 05, 2020 3:07 pm
np! yes, you can post the line you changed so we can see where to apply the html or css markup
Or, if it is not relevant what you changed (by the default) on the line of code you use to output, then this should work:
change
$value->topic_last_poster_name
into
<strong>$value->topic_last_poster_name</strong>
or
<span class=\"myclass\">$value->topic_last_poster_name</span>
and apply css via .myclass selector
or inline style it
<span style=\"font-weight:900;color:#FF0000\">$value->topic_last_poster_name</span>
[EDITED]
double quotes needs to be escaped in this case
Or, if it is not relevant what you changed (by the default) on the line of code you use to output, then this should work:
change
$value->topic_last_poster_name
into
<strong>$value->topic_last_poster_name</strong>
or
<span class=\"myclass\">$value->topic_last_poster_name</span>
and apply css via .myclass selector
or inline style it
<span style=\"font-weight:900;color:#FF0000\">$value->topic_last_poster_name</span>
[EDITED]
double quotes needs to be escaped in this case