StudioZ wrote:Looking for a small and minor tweak....
I am trying to put the category name on it's own single line, rather than being immediately followed by the article title.
How could I edit this line? (~ 327):
$tmpl = render_cnt_template($tmpl, 'TITLE', html_specialchars($article_list[$key]["article_catname"]." - ".$article_list[$key]["article_title"]));
the " - " being the part where I need to replace with a break like "<br />" but it is not being taken
What I want to acheive is this:
Category Name Here
Article Title Here
Followed of course, by the summary
text Followed of course, by the summary
text Followed of course, by the
summary text ...
Regards,
Remove the html_specialchars function or split it ( #346 )
$tmpl = render_cnt_template($tmpl, 'TITLE', html_specialchars($article_list[$key]["article_catname"])." <br> ".html_specialchars($article_list[$key]["article_title"]));
Erich