by axew3 » 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
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
[c]$value->topic_last_poster_name[/c]
into
[c]<strong>$value->topic_last_poster_name</strong>[/c]
or
[c]<span class=\"myclass\">$value->topic_last_poster_name</span>[/c]
and apply css via [i].myclass[/i] selector
or inline style it
[c]<span style=\"font-weight:900;color:#FF0000\">$value->topic_last_poster_name</span>[/c]
[EDITED]
[i]double quotes needs to be escaped in this case[/i]