XF 1.2 Remove navbar from forumhome

jauburn

Well-known member
The navbar (Which has the word Forums in it, as well as the quick navigation to the far right) serves no useful purpose on the forumhome of my forums. It just takes up vertical space, a no-no for something that's not useful.

How do I get rid of this, just on the forumhome? (Once inside a forum, it's useful; otherwise, not.)

Thanks.
 
wouldn't the following pasted in EXTRA.CSS template accomplish that?

Code:
.forum_list #navigation {display:none;}

Edit: The above code doesn't work sorry. Might require a template edit.
 
I presume he means the breadcrumb.

In which case, add this to EXTRA.css:
Code:
.forum_list .breadBoxTop,
.forum_list .breadBoxBottom {
display: none;
}

That did it. Thanks! Do you know how to remove the one extra line between the submenu bar and the content that appears below that, as <removed>.
 
I have removed the URL from your post above as it is very NSFW.

That space is easily removed but then it won't align with the sidebar.
Is that what you want?

As you can see, it is currently aligned vertically:
upload_2013-10-15_14-39-12.webp
 
I have removed the URL from your post above as it is very NSFW.

That space is easily removed but then it won't align with the sidebar.
Is that what you want?

As you can see, it is currently aligned vertically:
View attachment 59101

Yeah, it is NSFW, but I didn't know how to illustrate it otherwise. How it is easily removed? You might be right about alignment with the sidebar, but I'd have to fiddle to figure that out.
 
I also chose to remove the breadcrumb from the find new posts page.

Code:
.forum_list .breadBoxTop,
.forum_list .breadBoxBottom {
  display: none;
}

.find_new_posts .breadBoxTop,
.find_new_posts .breadBoxBottom {
  display: none;
}
 
Yeah, it is NSFW, but I didn't know how to illustrate it otherwise.
Links such as that should never be posted in the forum.
You can always do a screenshot of the area in question, assuming the image complies with the forum rules, or post it in a private conversation.

How it is easily removed?
Actually, it isn't.
The recent images block is using the node list class, so there is no easy way to target it.

You will have to ask whoever developed that to add a custom class to is so margin can be removed.
 
Links such as that should never be posted in the forum.
You can always do a screenshot of the area in question, assuming the image complies with the forum rules, or post it in a private conversation.

Noted.

How sad that Americans are so puritan. Are we not all endowed with reproductive organs that we view each and every day?

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
 
Last edited:
I also chose to remove the breadcrumb from the find new posts page.

Code:
.forum_list .breadBoxTop,
.forum_list .breadBoxBottom {
  display: none;
}
 
.find_new_posts .breadBoxTop,
.find_new_posts .breadBoxBottom {
  display: none;
}

Nice one.

Anyone know how to remove this from the Xenpora home page?

Thanks.
 
Top Bottom