Notifications
Clear all

[Solved] How can I delete the top header?

8 Posts
2 Users
1 Likes
468 Views
Posts: 11
 DiMa
Topic starter
(@dima)
Active Member
Joined: 2 years ago

Hi all: How can I delete the top header? ... It's double. Thanks for the solution

7 Replies
Chris
Posts: 3650
(@chris)
Famed Member
Joined: 3 years ago

@dima,

please provide website URL.

Posts: 11
 DiMa
Topic starter
(@dima)
Active Member
Joined: 2 years ago

sorry it is a password protected forum

5 Replies
Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3650

@dima,

Insert the Below CSS Code in Custom CSS Code field from Dashboard > wpForo > Settings > Colors & Styles Settings:

#wpforo #wpforo-wrap .wpf-action-link {
    padding: unset !important;
    margin-top: -30px !important;
}
 DiMa
(@dima)
Joined: 2 years ago

Active Member
Posts: 11

@chris thx ... but not works

the headline remains and the frame with 20px also. Even if I increase -30px of -200px

 DiMa
(@dima)
Joined: 2 years ago

Active Member
Posts: 11

OK. I read tip number 2 too late. so it works

Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3650

@dima,

please remove the CSS I gave you as it hides other bars which should not be hidden, and use this one:

#wpforo #wpforo-wrap .wpforo-main .wpforo-content .wpf-head-bar:first-child {
    display: none !important;
}
 DiMa
(@dima)
Joined: 2 years ago

Active Member
Posts: 11

@chris 

THX Chris