Notifications
Clear all

[Solved] How can i remove this big space and horizontal line from forum header

5 Posts
2 Users
1 Reactions
3,823 Views
Posts: 61
Topic starter
(@ediko)
Trusted Member
Joined: 3 years ago

Hello There,

I have tried to no avail to remove the horizontal line at the top of my forum and also remove the large margin space between the top and the horizontal line.

I checked the inspect elements but found there's no ID for this option.

Please assist. See attached image

Topic Tags
4 Replies
Chris
Posts: 3649
(@chris)
Famed Member
Joined: 3 years ago

Hi @ediko,

insert this CSS Code in Custom CSS Code field from Dashboard > wpForo > Settings > Colors & Styles

.home.page-template-default #page hr {
    display: none;
}
3 Replies
(@ediko)
Joined: 3 years ago

Trusted Member
Posts: 61

@chris Thank you very much, it worked.

But I still find difficulty removing the large top margin between the logo and the beginning of the site. I've gotten the CSS code for the bottom margin

Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3649

@ediko,

Try this:

body.home.page-template-default{
    margin-top: -20px
}
(@ediko)
Joined: 3 years ago

Trusted Member
Posts: 61

@chris it worked thanks