Skip to:
Content
Pages
Categories
Search
Top
Bottom

Need help with my full width Forum.


  • WutHirsch
    Participant

    @wuthirsch

    Hello everyone,

    i am very new to CSS & HTMl, i tried to solve my problem by my own, but i didn’t get it.
    Maybe someone has a idea how i can fix my new bbpressforum.

    Only half of the site is used by BBpress. BBpress should use all the remaining free space.

    Thats why i tried yet.
    The widget area dissapeard and bbpress should fill out the empty space.
    But yeah, how you can see its not working. (http://www.forest-game.de)

    My Code:

    #bbpress-forums .article, div#content_box.sidebar_layout {
    	width: 100%;
    }
    #bbpress-forums .article, .sidebar.c-4-12 {
    	display: none;
    }

    Edit:, oh i did something wrong. The widgets areas on the other sites dissapeared too ^-^

    Kindly regards

Viewing 4 replies - 1 through 4 (of 4 total)

  • WutHirsch
    Participant

    @wuthirsch

    O.K. Guys, i find the problem by my own.
    Typing Error, the right code is:

    #bbpress-forums, .article, div#content_box.sidebar_layout {
    	width: 100%;
    }

    But now my Start Page got a full width too, again.
    Hmm, ok so i have to try to fix it again.
    It would be easier if i would find the Page id from the forum root.

    But i dont know, where can i find it.
    Normaly i can see the page id in the urls.
    Its not possible here.


    Stagger Lee
    Participant

    @stagger-lee

    Because you use “comma”, “,”. There you have 3 different and separate rules, “.article” is defined globally for whole website.


    Robkk
    Moderator

    @robkk

    @wuthirsch

    glad you solved your own issue.


    WutHirsch
    Participant

    @wuthirsch

    Not completely.
    But the mythemeshop support helped me a lot.

    The correct code is:

    .bbpress .sidebar.c-4-12 {
      display: none;
    }
    .bbpress .article {
      width: 100%;
    }

    Also i was able to change the breadcrumb / the forum base title into another word.
    Simply add this code into: bbpress.php:

    
    // bbPress, change Forum title in bbpress 
     
    function isa_custom_forum_title() {
     
         return 'Enter your title';
    }
     
    add_filter('bbp_get_forum_archive_title', 'isa_custom_forum_title');
Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.
Skip to toolbar