how to change link-color for "Log-in or Register to post here" ?

erich37

Well-known member
Hello,

I would like to change the link-color for the text "(You must log in or sign up to post here.)" and also for "(You must log in or sign up to reply here.)".


I could not find a specific CSS for this one item.

Is there also a chance to get rid of the brackets in those 2 phrases ?


Appreciate your help!!! :)
 
The brackets for the thread view are in the thread_view template.

Find this:

Code:
<label for="LoginControl"><a href="{xen:link login}" class="concealed">({xen:phrase log_in_or_sign_up_to_reply})</a></label>

Replace with this:

Code:
<label for="LoginControl"><a href="{xen:link login}" class="concealed">{xen:phrase log_in_or_sign_up_to_reply}</a></label>

For the forum view find the forum_view template and replace this:

Code:
<label for="LoginControl"><a href="{xen:link login}" class="concealed">({xen:phrase log_in_or_sign_up_to_post})</a></label>

with this:

Code:
<label for="LoginControl"><a href="{xen:link login}" class="concealed">{xen:phrase log_in_or_sign_up_to_post}</a></label>
 
Top Bottom