Skip to:
Content
Pages
Categories
Search
Top
Bottom

how to remove li.bbp-header on blog posts if i use bbpress topics for posts


  • Robkk
    Moderator

    @robkk

    if i use bbpress topics for posts how do i remove the bbpress header when ever its on blog posts only?

Viewing 4 replies - 1 through 4 (of 4 total)
  • This is a question you should ask the ‘topics for posts’ plugin author, not so much bbPress itself.


    Robkk
    Moderator

    @robkk

    nevermind i got it , i assumed i could easily do it with css

    after a couple of tries i eventually got it

    li.bbp-header {
        display: none;
    }

    hides the header on blog posts and forums

    but when i add

    .post li.bbp-header {
      background: none repeat scroll 0% 0% transparent;
      display:block;
    }

    the header is now just on forums and not on blog posts anymore

    this also works on the li.bbp-footer too

    and probably anything else if you just use

    display:none; to hide the original css for blog posts

    .post to display it only on forum pages


    eddie01001
    Participant

    @eddie01001

    when i put this code
    li.bbp-header {
    display: none;
    }

    it works all forum pages title not show up

    but when i put the following code
    .post li.bbp-header {
    background: none repeat scroll 0% 0% transparent;
    display:block;
    }

    it has nothing happen no change at all

    how can i make just NO title on blog post only i want title on other pages.
    thanks


    Robkk
    Moderator

    @robkk


    @eddie01001

    the li.bbp-header has nothing to do with page title.

    this code from my topic would not work on page title.

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.
Skip to toolbar