XF 2.0 Hide Board name

NikolaLeon

Member
Licensed customer
Hey;
Currently I need to remove the board name in order for it not to show because we use image logo. Is there option to keep name but hide it? It's kinda annoying without it. Doesn't show in a tab nor in acp: see http://prntscr.com/idrv7j
 
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 :)
 
Back
Top Bottom