Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 1,301 through 1,325 (of 2,723 total)
  • Author
    Search Results
  • #143402
    Robin W
    Moderator

    Ok, I think I understand

    BBpress doesn’t have a “theme”, it uses your theme to get many of it’s display elements.

    If you simply want to just use bbpress, then pick a wordpress theme, and off you go !

    It’s only if you want to alter how bbpress forums look or behave that you need to copy files.

    bbPress uses “templates” to order and decide what to show, and a bbpress.css file to style bbpress specific elements.

    Therefore you should use a wordpress theme.

    Within that wrodpress theem, you create a bbpress folder for any templates you want to alter, BUT only for those, so if you don’t want to alter, then you need do nothing.

    If you wish to alter the bbpress.css, you’d create a css subfolder in your theme and copy the default bbpress.css into their and then alter it, or simply add styling to your themes style.css.

    #143260

    In reply to: No toolbar available

    Liberty
    Participant

    This is the default bbPress theme. I just used CSS to change the style of the forum. I commented the CSS part for the bbPress forum out but nothing happened.

    Dashboard>settings>forums> forum features have you ticked โ€œPost formattingโ€ to enable this toolbar?

    I have probably checked 100 times if this is ticked. ๐Ÿ˜€

    #143256

    In reply to: No toolbar available

    Liberty
    Participant

    Hello Robin,

    I’m missing this toolbar:
    dsrgdrg

    it’s not available on my site:
    dgdfrgdr

    I have the newest versions of WordPress and bbPress and have done this steps to fix this problem but nothing happened:

    I have deleted every JavaScript and tested it. Nothing!
    I deleted the code of the function.php. Nothing!
    I deactivated every plug-in. Nothing!
    โ€ฆand the CSS canโ€™t be the fault because the toolbar is not disabled. Itโ€™s not there.

    I opened my forum for guests and created a test forum. Now you can take a look on it: http://plusthemes.de/forum/test

    Thank you so much for your answer. I try to give as much information as possible. ๐Ÿ™‚

    #143160
    Ricardo Bueno
    Participant

    It’s not a plugin issue. It seems to be a theme issue since the checkbox works fine on another theme. Which still brings me back to my original question… How do I fix it?

    I changed a few background and font color elements elsewhere to #fff. So I’m wondering if I placed the wrong bit of CSS somewhere, or something else?

    Here’s that page again:
    http://www.contentsmartslab.com/membersite/forums/forum/content-smarts/

    #143152
    Ricardo Bueno
    Participant

    I’m setting up/testing bbPress on this URL:
    http://www.contentsmartslab.com/membersite/forums/forum/content-smarts/

    I can’t seem to check the box that says “notify me of follow-up replies via email.” I have the subscribe option properly setup on the back-end. I’m wondering if I messed up the input CSS somewhere here, or something else. Any thoughts?

    #143123

    In reply to: Change color

    Robin W
    Moderator

    That’s interesting because both topic and reply should both use the same class and styling to display (or not!) the avatar and name.

    The code they are drawing from is around line 208 in bbpress.css

    #bbpress-forums div.bbp-topic-author a.bbp-author-name, #bbpress-forums div.bbp-reply-author a.bbp-author-name {
    clear: left;
    display: block;
    }

    you could add

    #bbpress-forums div.bbp-topic-author a.bbp-author-name, #bbpress-forums div.bbp-reply-author a.bbp-author-name {
    background-color : none !important ;
    }

    in your style.css to this to see if it clears it.

    Otherwise post a link to your url and I’ll take a closer look

    #143092
    jslom
    Participant

    For some reason this code was not implemented into my bbpress defauly bbpress.css file.
    I am posting it so you guys can update it for future releases..

    When posting an image to the forum your current css makes the image 100% width, so it does not break the forum layout. Unfortunately this does not keep the image proportional so the height stays the same. All you have to do is this.

    Change

    #bbpress-forums div.bbp-topic-content img,
    #bbpress-forums div.bbp-reply-content img {
    	max-width: 100%;

    To

    #bbpress-forums div.bbp-topic-content img,
    #bbpress-forums div.bbp-reply-content img {
    	max-width: 100%;
            height: auto;
    robahas
    Participant

    Hi – I figured this out. Everything under a forum category is a descendant. So based on that you can select an entire “section” of the forum. Here is the code (this is in the genesis framework, so adjustments would be needed for applying to the body class in non-genesis installations). The key is to get the ancestors of the current post, and if your top level forum is included, then apply the css.

    add_filter( 'body_class', 'sp_body_class' );
    function sp_body_class( $classes ) {
        global $post;
        $anc = get_ancestors($post->ID, 'post');
         if ( is_single( '1530' ) || in_array('1530', $anc) )
              $classes[] = 'custom-class';
              return $classes;
    }
    Robin W
    Moderator

    Drop the following into your theme’s css

    #bbpress-forums .status-closed, #bbpress-forums .status-closed a {color: #000 !important;}

    Come back if you need further help doing that.

    #142924
    traemccombs
    Participant

    Heh, stop being so awesome in your replies. ๐Ÿ™‚

    Anyway, me, the non-coder, still doesn’t understand why it(bbpress plugin) can’t simply have an option to use styles from other themes. If nothing else, the CSS etc would be a nice “base” for things like link colors, font sizes, whatever.

    *sigh*

    I tried bbPress Tweaks. Meh.

    I’ll read the link you posted. Hopefully it doesn’t suck.

    bbPress has such a non-WP feel about it though in everything I’ve come to expect from WordPress. Part of it is my frustration with PHPBB, and part of it is my frustration with not being able to get a non-sucky looking forum with bbPress.

    And, I have yet to see a non-sucky bbPress based forum. Most are fairly crappy in how they present and deal with the content.

    Easy of me to throw stones in a glass house when I don’t code I guess. I just wish there were more sane defaults in bbPress that looked better out of the box.

    #142907
    joneslloyd
    Participant

    Hi all,

    I don’t know if this is a known issue or not, but on this site:

    Forum

    If you click on any of the forums (fora?), you’ll see that there are many topics, and there is (at the top and bottom of the topics lists) the option to click Page2, Page3, Page4 (etc.).

    Clicking any of these seems to redirect you back to the page you were on.

    Likewise, if you go in to a particular topic (one with many replies), you would have been able to see that clicking Page2, Page3, Page4 (etc.) also just basically refresh the page you were on (though I’ve disabled pagination here for practical reasons).

    I am using the TwentyThirteen theme with a modified header image and some CSS styles (but otherwise the twentythirteen theme), and I’ve tried /%postname%/ and /%category%/%postname%/ as my permalink structure – both of which don’t work.

    Here’s a TL;DR version:
    Go here: http://lenkiewicz.org/forum/the-lenkiewicz-foundation/ and click (say) page 2 at the bottom, which is this link: http://lenkiewicz.org/forum/the-lenkiewicz-foundation/page/2/

    But it will, when clicked, take you back to here: http://lenkiewicz.org/forum/the-lenkiewicz-foundation/

    I was not running any plugins at all when this started to occur. I thought it could be a .htaccess issue perhaps..? But I wouldn’t know where to start.

    Also, I’ve tried all of the repair options in BBPress many times, to no avail.

    If anybody has any ideas with what’s going on here I’d be really grateful.

    Thanks,
    Lloyd

    #142896
    Robin W
    Moderator

    John, really pleased that you tracked it down, and yes I’ll add it to the styling crib when I get a moment ! Often I spend hours searching for the wrong thing, the solutions here are often easy and obvious but only after you have worked them out !

    The code

    #bbpress-forums ul.bbp-threaded-replies{margin-left:25px;}
    

    is exactly the same as

    #bbpress-forums ul.bbp-threaded-replies {
     margin-left: 25px;
     }
    

    The computer simply ignores gaps, and coders only write it that latter way to make it easier to read.

    You ought to start using a child theme if you haven’t already got one. (just google child theme video, and you’ll get lots of help). it’s very quick and simple and does not affect you main theme, just allows you to add without losing on updates. Then you would create a directory in that called
    css viz wp-content/themes/yourchildthemename/css and copy your amended bbpress.css file into that. bbPress will then use that, and you won’t lose changes.

    Great that you’re fixed !

    #142892
    crzyhrse
    Participant

    Got it..!

    I’t’s like going on an easter egg hunt and actually finding a real egg… ๐Ÿ™‚

    I measured the offset with a little pixel yardstick that plugs into Chrome, got 50px and searched the bbpress directory for that, and found this in the bbpress.css you pointed me to above:

    #bbpress-forums ul.bbp-threaded-replies {
    	margin-left: 50px;
    }

    changed that to:

    #bbpress-forums ul.bbp-threaded-replies {
    	margin-left: 25px;
    }

    Put it into the theme’s child with the other bbpress css changes I have there, and it worked… Perfectly… Hoping it might be helpful for others, or in your crib, Robin..?

    Curiously, in searching also found:

    in both of these-
    bbpress-rtl.css
    bbpress-rtl.min.css
    this
    #bbpress-forums ul.bbp-threaded-replies{margin-right:50px}

    and in this-
    bbpress.min.css
    this
    #bbpress-forums ul.bbp-threaded-replies{margin-left:50px}

    All of which looks like no css I’ve seen, in each file one very, very, very long continuous line of code … Am wondering if there is effect from the above for other sorts of screens or browsers, or something..? If I changed these to 25px I’d likely do it directly in the files in the bbpress directory, and keep a record for bbpress updates…

    Leaving it alone for now, but in case someone looks in here and has any thoughts..?

    John.

    #142891
    crzyhrse
    Participant

    Thanks Robin and hi again… ๐Ÿ™‚

    That doesn’t find anything that seems to pertain, plenty of padding in the normal sense for various aspects of replies… And pertaining to replies is what I’m looking for because that is where the nesting (offsetting? indenting?) or threading occurs, per the Reply threading setting in the forum settings section of the Admin settings section…

    I’ve searched through directories everywhere that made sense, php and css, for terms like nest, thread, indent, offset… found nothing… It would need to be some sort of code that recognized whether it was a first, second or third reply, etc, and also somehow say how much to indent… It would also seem to need to some way be affected by the setting for it, as mentioned above…

    I was kinda hoping to maybe attract John James Jacoby’s attention on this, noticing how much he seems to know in the various support areas I’ve looked over time..?

    This would seem to be something that would be helpful to others as well..? The default indent distance I believe is much more than is needed to show nesting, and the less it indents the less the following indents will be crowded to the right, don’t know but maybe even get cut off…?

    Thanks… It is nice when someone replies, doesn’t always happen… ๐Ÿ™‚

    John.

    Mycelus
    Participant

    While I appreciate your work, this is not a viable solution.

    The fact that bbPress comes out of the box with a box that says “forum” makes no sense.

    Any forums I’ve seen (IPB, XenForo, phpBB, etc etc etc) have boxes for each category, and then the forum names, not a box that says forum, then the categories, then the forums underneath, bbPress’ layout makes no sense and I am not looking to download a child theme and then have to customize it because I don’t currently possess enough CSS and WordPress knowledge to do so.

    I am learning, Im not sitting around or anything, but bbPress should look like the other forum layouts because it’s current layout makes 0 sense.

    Are there any repositories with some example images of how to go about styling bbPress? I don’t know if it’s just me but bbPress has been around for years if I’m not mistaken and there’s a surprising lack of documentation on it for how popular it is.

    #142665

    In reply to: Forum display

    Robin W
    Moderator

    REPEAT : It would take a long time to go through what you would need to do โ€“ Basically it is all to do with styling and functions.

    The problem is that in answering this question I’d need to explain firefox and firebug, css, php bbpress structure and lots more.

    But to get you started – THIS IS NOT THE SOLUTION – but a couple of lines that will see you get further forward. you’ll need to look at “inline” as well to get the is horizontal.

    You could do a bar several ways, but the easiest is create a copy of your page template for bbpress to use

    see https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/ section 8

    and then play with the following

    in css add

    #subnav {
    background: none repeat scroll 0 0 #2020ff;
    border-bottom: 1px solid #BBBBBB;
    font-size: 12px;
    margin-top: 81px;

    }
    and in you bbpress page template put under the header

    <div id=”subnav”>
    <ul id=”nav-user” class=”menu”>

  • Register
  • Lost Password
  • </div>

#142632
storm72087
Participant

Hi guys,

I’m trying to tinker with my bbPress forum and the font sizes of the parent forums and sub forums. I found this code (#bbpress-forums li a) and entered it into my custom CSS field, but it affects both parent and sub forum titles. How do I target the parent forum titles and sub forum titles separately.

Thanks!

#142603
Lynqoid
Participant

Hi Mycelus,

I would recommend trying to gain a little css knowledge if your up for the challenge as it can get a lot done with WordPress and bbPress. Even just by hiding things with display:none or positioning things absolutely to get them in the right place.

If you want to try and get the look and feel of phpbb or ipboard then you could take a look at the bbPress starter theme I created. It gets you onto a good footing with the layout and then you can go onto styling the colours from there.

http://www.epicwebs.co.uk/bbpress-tutorials/bbpress-starter-theme/.

You can also find the topic about it here on bbPress: https://bbpress.org/forums/topic/i-have-created-a-bbpress-starter-theme-with-a-phpbb-look-and-feel/.

Good luck! ๐Ÿ™‚

#142598
Mycelus
Participant

Hey guys. So I’m used to the regular forum format like phpBB and IP Board where it looks like this: http://imgur.com/XlyR6cc

So, where it says Welcome to IPS, that’s the category name.

Under that, you have News and Information, and Pre-Sales, those are your FORUMS.

Then you have a space underneath the categories as can be seen in the picture.

This makes sense because your CATEGORIES are SEPARATED from each other, and the FORUMS, are listed underneath.

The way bbPress it, you can click a category. This makes ZERO sense, there is NO reason to click on the category.

Also, as can also be seen in the picture, the amount of topics, and replies are to the right side, with the recent reply, time, latest thread, and time to the right.

This can be done by anyone with some moderate CSS knowledge and WordPress know how, unfortunately I possess little of both.

So I’m here for your help. Please share your wisdom with me and help me get this layout. This is a layout SO many people have asked for, yet I have found no tutorials on getting anything like this and it just astounds me considering how popular bbPress is, I don’t know why bbPress has a god awful layout.

Note: Please do not make any “well this is how bbPress is supposed to look like so you should deal with it” comments. I’m not here to hear that.

Thank you in advance to anyone who helps me achieve this. I really appreciate it.

#142511

Both editor.js and bbpress.css are loaded similarly, as well as other scripts and styles in certain situations (single forums/topics, and when editing your password). Are any other SSL errors present, or is it just bbPress? What version of bbPress are you using?

Without deeper investigation, I’m unsure how this is possible when using core functions and templates. bbp_enqueue_style() calls content_url() which uses set_url_scheme() which is the WordPress core function for correctly determining the http/https/relative scheme for every link on the site. This means it’s difficult for one to be wrong, and another to be right.

#142459

Topic: css problem..

in forum Troubleshooting
David2013
Participant

Hi i just dont know whats wrong…

when i work with firebug on css for forum page is ok but when i add to do css wont work…

#bbp-search-form div {
    display: none !important;
}

is format type wrong?

Thanks, David

#142403
thefruitnation
Participant

http://www.thefruitnation.com/forums/

Unsure if its my themes css or something else I did that is causing this to be so tight?

#142400
Robin W
Moderator

ok, think the ones on the page link are around line 90 (my .css is different, so exact lines may vary) – look for

#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
	background: #f3f3f3;
	border-top: 1px solid #eee;
	font-weight: bold;
	padding: 8px;
	text-align: center;
}

#bbpress-forums li.bbp-header {
	background: #eaeaea;
}

and change background to the same as above.

They may be some others as you go through. Come back with any that are still niggling, and I’ll chase them down for you.

As you are making changes to bbPress templates, make a copy of the file onto your PC, and keep a list of what you changed, as any bbPress updates will override this file.

You should revisit child themes when you get some more time, as this is a better way to do it, but the way you’re doing will work fine (and was what I did in the early days!).

#142370
Robin W
Moderator

Ok, you might take while to fix this, but here’s some starters.

On the correct forum, the page is using the bbpress.css under a div class of “entry content”
On the incorrect forum, the page is using your themes css under a div class of “storycontent”

On the incorrect website, I suspect that you need to take a copy of the page.php that this forum is using. Rename this to bbpress.php, and move this file to your theme’s folder. BBpress will then use this as the page style for all forum stuff. Then you’ll need to edit it to use the bbpress theme. Sounds simple when you write it, but this assumes you know what I’m talking about, and even that I know what I’m talking about! But maybe start there and see how far you can get.

#142366
Robin W
Moderator

No problem,

Several ways to do this, the easiest is to add the following to your theme’s style.css file:

.widget_display_topics .bbp-author-avatar { display: none ! important; }

.bbp-topic-freshness-author  .bbp-author-avatar { display: none ! important; }

or if you are using a child theme, put in in the bbpress.css in your css folder

If you need further help, just come back and ask, or visit

Step by step guide to setting up a bbPress forum – part 2

Viewing 25 results - 1,301 through 1,325 (of 2,723 total)
Skip to toolbar