how do I *remove* the board's title from forum home page?

Vex

Well-known member
Registered
Joined
Oct 29, 2019
Messages
91
Points
28

Reputation:

I'm using a freshly installed 2.27 patch 1 with a simple dark theme. I have it looking just right, but I'd like to remove the redundant board title text show above the nodes on the home page. I searched templates, and settings, and could not find out where to delete it.

Any help would be most appreciated! :)
 

sucre13

Moderator
Staff member
Moderator
Collaborate
Registered
Joined
Jan 19, 2019
Messages
859
Points
153

Reputation:

Add the following to EXTRA.css:

.forum_list .titleBar
{
display: none;
}
 
  • Like
Reactions: Vex

Vex

Well-known member
Registered
Joined
Oct 29, 2019
Messages
91
Points
28

Reputation:

Yup, I just found that. :) You also wouldn't happen to know how to center my forum's logo image, would you? :D

Thanks!
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,533
Points
523

Reputation:

Yup, I just found that. :) You also wouldn't happen to know how to center my forum's logo image, would you? :D

Thanks!
VexIn Extra.less add
Less:
.p-header-logo {
    vertical-align: middle;
    margin-inline: auto;
}
 
  • Like
Reactions: Vex

Vex

Well-known member
Registered
Joined
Oct 29, 2019
Messages
91
Points
28

Reputation:

I'm now using a licensed 2.2.8 Patch 1 with Themehouse UI.X Dark and neither of your code snippets work now.

Any ideas? Thanks!
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,533
Points
523

Reputation:

I'm now using a licensed 2.2.8 Patch 1 with Themehouse UI.X Dark and neither of your code snippets work now.

Any ideas? Thanks!
VexWhat do you want to do?
 

kiniemxua

Nhất Túy Tiêu Dao
Collaborate
Registered
Joined
Jun 30, 2019
Messages
83
Points
243

Reputation:

  • Wow
Reactions: Vex

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,533
Points
523

Reputation:

  • Like
Reactions: Vex

Vex

Well-known member
Registered
Joined
Oct 29, 2019
Messages
91
Points
28

Reputation:

Is this supposed to just remove the extra forum title? I just realized my forum doesn't even show that. It just shows "Forum List" which was not affected. lol
 

kiniemxua

Nhất Túy Tiêu Dao
Collaborate
Registered
Joined
Jun 30, 2019
Messages
83
Points
243

Reputation:

Is this supposed to just remove the extra forum title? I just realized my forum doesn't even show that. It just shows "Forum List" which was not affected. lol
Vex
Screenshot_20220306-122848_Chrome.jpg

On my live forum, and i use default style XF 2.2.8 patch 1
 
  • Haha
Reactions: Vex

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
421
Points
53

Reputation:

View attachment 28053
On my live forum, and i use default style XF 2.2.8 patch 1
kiniemxuayou can you use a smaller image its not that hard 2 adjust when i open this tread i was like bam!

add this to your extraless


Code:
[data-template="forum_list"]
{
    .p-title-value {
        display: none;
    }
    .p-title {
        float: right;
    }
}
/**********/
 

kiniemxua

Nhất Túy Tiêu Dao
Collaborate
Registered
Joined
Jun 30, 2019
Messages
83
Points
243

Reputation:

you can you use a smaller image its not that hard 2 adjust when i open this tread i was like bam!

add this to your extraless


Code:
[data-template="forum_list"]
{
    .p-title-value {
        display: none;
    }
    .p-title {
        float: right;
    }
}
/**********/
one_finger_manI know this code, but in some custom themes it won't work. The fastest is to use the Google Chrome browser for developers ;)
 

Vex

Well-known member
Registered
Joined
Oct 29, 2019
Messages
91
Points
28

Reputation:

Okay. What am I supposed to do with this? lol

I use a highly customized style. I don't use the default one at all. It isn't even enabled for use. :)
 

kiniemxua

Nhất Túy Tiêu Dao
Collaborate
Registered
Joined
Jun 30, 2019
Messages
83
Points
243

Reputation:

Okay. What am I supposed to do with this? lol

I use a highly customized style. I don't use the default one at all. It isn't even enabled for use. :)
VexThe interface I'm using is still custom. The problem is that I give you an example to make it easier to understand where it is located?? Do you know what I mean?
 
  • Haha
Reactions: Vex

Vex

Well-known member
Registered
Joined
Oct 29, 2019
Messages
91
Points
28

Reputation:

I edited the phrase and it worked perfectly for me:

Code:
<span style="display:none;">Forum list</span>
 
Top