Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

5 Posts
2 Users
1 Reactions
4,316 Views
Posts: 61
Topic starter
(@ediko)
Trusted Member
Joined: 4 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: 3611
(@chris)
Famed Member
Joined: 4 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: 4 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: 4 years ago

Famed Member
Posts: 3611

@ediko,

Try this:

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

Trusted Member
Posts: 61

@chris it worked thanks