XF 2.2 change color of the text "Start a new conversation"

hugo4melton

Active member
Somehow several people in my forum asked me where can they create a new conversation.. If the inbox is full it is indeed hard to see.
Only if there is no recent conversations then its easier to see..

Instead is there a way to make it colored and bold?
1682605701493.webp
 
There's no unique class there. This isn't the best approach, but you could get away with adding something like this to extra.less:

Code:
.menu-footer a[href="/community/conversations/add"] {
    font-weight: bold;
}

You'll need to adjust the link to your conversations link. Alternatively you could edit PAGE_CONTAINER, find:

Code:
<li><a href="{{ link('conversations/add') }}">{{ phrase('start_new_conversation') }}</a></li>

Replace with:

Code:
<li><a href="{{ link('conversations/add') }}"><strong>{{ phrase('start_new_conversation') }}</strong></a></li>
 
Top Bottom