XF 2.0 Hide Board name

Be aware that using the above code will cause all titles to be removed, along with anything on the same line, such as the Post thread button.
 
The OP is using a custom style with custom properties so it isn't quite clear what it is they wanted. To hide the board name above the forum list you would do something like this:
Code:
[data-template="forum_list"]
{
    .p-title-value
    {
        display: none;
    }
    .p-title-pageAction
    {
        margin-left: auto;
    }
}

That will hide this bit, if that is what people are wanting.
1519914766554.webp
 
The OP is using a custom style with custom properties so it isn't quite clear what it is they wanted. To hide the board name above the forum list you would do something like this:
Code:
[data-template="forum_list"]
{
    .p-title-value
    {
        display: none;
    }
    .p-title-pageAction
    {
        margin-left: auto;
    }
}

That will hide this bit, if that is what people are wanting.
View attachment 170155
Is there a way to change the color of the text?
 
The OP is using a custom style with custom properties so it isn't quite clear what it is they wanted. To hide the board name above the forum list you would do something like this:
Code:
[data-template="forum_list"]
{
    .p-title-value
    {
        display: none;
    }
    .p-title-pageAction
    {
        margin-left: auto;
    }
}

That will hide this bit, if that is what people are wanting.
View attachment 170155

It works without any problem. thanks :)
 
Top Bottom