XF 1.2 How to change color for titleBar pageDescription

TsinJu

Well-known member
I am wondering if it´s possible to change the Text Color for just the titleBar pageDescription(s) (red bordered)

pageDescription.webp
Screenshot comes from here

When using the classes "body .muted, body a.muted, body .muted a"
it will also change the Text Color for "username" and "DateTime" in .discussionList, what i would like to prevent.

From what i see there is no class for the "a ref Link" behind "Discussion in..." (underlined in Screen)

I hope somebody can help me with that. Thank you.
 
solved. Was looking in the wrong Template.
Searching for the Phrase was the Key ;)

Edit: For those who are interested in.
Template is thread_view and adding a class before " href="{xen:link forums, $forum}" will do what i was looking for

Code:
<xen:description>
   {xen:phrase discussion_in_x_started_by_y_date_z,
     'forum=<a class="anyClass" href="{xen:link forums, $forum}">{$forum.title}</a>',
     'name={xen:helper username, $thread}',
     'date=<a href="{xen:link threads, $thread}">{xen:datetime $thread.post_date, html}</a>'}
 
Last edited:
Top Bottom