Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #559027

    Hello! I was wondering if I could get some help with how to style the bbpress topic areas to look more like this: https://www.makeupgeek.com/forums/topic/forum-closure-announcement/

    I’ve been trying to figure out how to style bbpress from their forum as well but just can’t figure it out!

    Also:

    -How can I get rid of this random non functional grey arrow that shows at the top, below the topic title? (link in private area)
    -How can I remove the “started by” in the topic titles?
    -How can I remove the search bar on the main forums page?
    -How can I position the breadcrumbs and title as how it appears on this website?
    -Lastly, how to get the bbpress login/myaccount widget to look like how you guys have it on this site? Currently, when the user is logged in it just displays the avatar and than a giant logout button that’s connected to it.

    Thanks you guys for all of your great work.

    #559226

    Hi digitalammo!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .bbp-reply-author:before { display: none; }
    span.bbp-topic-started-by { display: none; }
    .bbp-search-form {
        display: none;
    }
    .title_container .breadcrumb {
        right: auto;
        left: 48px;
        top: 80%;
    }
    

    Login widget was customized by Kriesi only for Kriesi.at site and you would need to modify files to achieve a similar widget. Please consider to hire a freelance developer as such customization would be out of the scope of our support

    P.S.: Deleting “started by” using custom CSS would remove author name and link as well. If you would like to remove the text only, please go to wp-content/plugins/bbpress/templates/default/bbpress/loop-single-topic.php and remove the string.

    Best regards,
    Yigit

    #559409

    Awesome! Thank you! :) Everything that you provided works, except that the breadcrumbs is now overlapping with the title area.

    #559427

    Hi!

    It seems like you made a little mistake while adding the code. Seems like closing curly bracket is missing. Please see screenshot in private content field and fix it. If you need help fixing it, please create a temporary admin login and post it here privately :)

    Best regards,
    Yigit

    #560105

    Thank you for looking into that Yigit! My apologies for overlooking that mistake.

    Is there a way to increase the vertical spacing between the title and breadcrumb, and is there a way to also increase padding below the breadcrumb so that it is more centered on the title bar?

    One more thing, what line of code can I edit to change the “you are here” that precedes the breadcrumb?

    Thank you again. You guys are amazing.

    #560396

    Hi,

    Try the following as well:

    .title_container {
        padding-bottom: 30px !important;
    }
    
    h1.entry-title {
        padding-bottom: 20px !important;
    }

    Thanks,
    Rikard

    #562217

    Worked perfectly. Thank you Rikard :)

    #562382

    Hi,

    Glad we could help out :-)

    Regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.