Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 951 through 975 (of 2,719 total)
  • Author
    Search Results
  • #155742
    Robkk
    Moderator

    untick topic/reply edit logging in settings>forums to disable the logging of future posts.

    and add this CSS anywhere you can add custom CSS to hide the edit logs on any existing posts.

    #bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log, 
    #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log, 
    #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log {
    display: none;
    }
    #155741

    Topic: resize bbpress forum

    in forum Showcase
    Gotzak
    Participant

    Hi there,
    im pretty new to WordPress and css.
    Till now everything worked fine but now im trying to resize my bbpress forum (www.die-dunkle-wache.de/forum) to the whole width of the browser.
    I got it to width 100% so it has the same width as the navbar, but i want it without the margin left and right (dont know if its margin or max width).
    I tried to change the Template but this didnt work.
    I just want the forum to resize all the other pages and the navbar schould stay like they are.
    Hope u can help me.

    Best Regards,
    Gotzak

    #155722

    Topic: CSS issue

    in forum Showcase
    sharongraylac
    Participant

    Hello there,

    Just integrated bbpress into my website, and noticed a strange CSS issue.

    The replies in forums are shifted to the left, slightly wider than the original post. This not only makes the author’s avatar shift to the left, but it also hides my left-sided border.

    This occurred BEFORE I started tampering with the CSS.

    Any ideas how to fix this?

    Here’s my mock forum: http://bellynsoul.com/forums/topic/another-test-topic/#post-7650

    Thanks so much!
    Sharon

    #155686
    wannial
    Participant

    Hello Robin,

    I don;t know what the issue is with this forum, but that last reply with the pictures is the post I’ve tried to post 2 days ago…

    I already solved it with custom css
    http://www.pc-helpforum.be/topic/55670-wordpress-bbpress-plugin/#entry437428

    (your reply wasn’t visible at that time either).

    So again I don’t know what’s wrong with this forum that post get delayed posted for over a day, but it isn’t really helpful.

    #155679
    Tecca
    Participant

    It’s likely inheriting the bullets from your WordPress style.css rather than something coming from the bbPress stylesheet. So what you can do is add something like the below CSS to your bbPress stylesheet.

    #bbpress-forums li {
        list-style-type: none;
    }

    That will likely remove bullets from forum posts as well, but it’s hard to get specific without seeing the site itself.

    Hopefully that takes you in the right direction.

    #155672
    jmodine
    Participant

    It looks like its a second footer widget area. I would edit the footer file in your child theme to do this and then inline custom css to take care of it. you would need to reference content-statstics.php to include the different pieces for stats in the footer.

    for example if you place this inbetweent your <footer> and </footer> you ahouls have desired effect.

    <div style=”width:66%; float:Left;”>
    <?php get_sidebar( ‘footer’ ); ?>
    </div>
    <div style=”width:33%; float:right;”>
    <?php $stats = bbp_get_statistics(); ?>
    <table style=”border-width:3px” >
    <tbody>
    <?php do_action( ‘bbp_before_statistics’ ); ?>
    <tr>
    <th><li class=”blue-bullet”><?php _e( ‘Registered Users’, ‘bbpress’ ); ?>:

    <?php echo esc_html( $stats[‘user_count’] ); ?>
    </th>

    <th><li class=”blue-bullet”><?php _e( ‘Forums’, ‘bbpress’ ); ?>:

    <?php echo esc_html( $stats[‘forum_count’] ); ?>

    </th>
    </tr>
    <tr>
    <th><li class=”blue-bullet”><?php _e( ‘Topics’, ‘bbpress’ ); ?>:

    <?php echo esc_html( $stats[‘topic_count’] ); ?>
    </th>

    <th><li class=”blue-bullet”><?php _e( ‘Replies’, ‘bbpress’ ); ?>:

    <?php echo esc_html( $stats[‘reply_count’] ); ?>
    </th>

    <?php do_action( ‘bbp_after_statistics’ ); ?>

    </tr></tbody></table>

    <?php unset( $stats ); ?>

    Now you will have to play with height box text size and add some custom css to your your style.css to get the bullets i added this right here.

    ul.blue-bullet li {
    color: blue;
    }

    and all that did is define the color of my custom bullets.

    Then for users get the widget that is already included added to your footer sidebar. you should be good.

    #155669
    wannial
    Participant
    #155600
    MBenningfield
    Participant

    I installed the GD bbPress Tools plugin and the plugin itself works great. However, when you go to edit profile so that you can edit your signature, everything is “white” and you can’t see what you have written, etc. I originally had this issue on the actual bbPress forums but I downloaded the bbPress UI settings and changed it to a dark theme. I am completely lost in codec’s and css, etc, but I would like to know what to do to change this as it is really annoying some of the people that joined our site. I’m attaching a picture of what the issue appears to be.

    Wordpress Version is 4.0.1.
    Theme is Falcon (Child theme of 2014 themes)
    GD bbPress Tools version is 1.6

    Screenshot from bbPress

    jimbofoxman
    Participant

    I have a child theme setup using the Child Theme Configurator plugin. I have the following in the child theme folder; style.css, function.php and bbpress.php (renamed from page.php).

    I am using the WP-Englightened theme.

    I copied the page.php to the child root and renamed it to bbpress.php. There doesn’t seem to be anything in that file to remove for the sidebar.

    <?php get_template_part( 'content', 'before' ); ?>
    
    <?php 
    	if (have_posts()) : while (have_posts()) : the_post(); 
    	global $do_not_duplicate;
    	$do_not_duplicate[] = $post->ID;
    ?>
    
    						<div <?php post_class('singlepage clearfix'); ?> id="single-page-<?php the_ID(); ?>">
    
    							<div class="entry">
    
    								<h1 class="page-title"><?php the_title(); ?></h1>
    
    								<?php if ( get_post_meta( $post->ID, 'video_embed', true ) ) {
    									$video_embed = get_post_meta( $post->ID, 'video_embed', true );
    									echo '<div class="post-feature-video single">';
    									echo '<div class="single-video">';
    									echo $video_embed;
    									echo '</div>';
    									echo '</div>';
     								} ?>
    
    								<?php the_content(); ?>
    
    								<div style="clear:both;"></div>
    
    								<?php wp_link_pages(); ?>
    
    							</div>
    
    						</div>
    
    <?php endwhile; endif; ?>
    
    <?php get_template_part( 'content', 'after' ); ?>

    I tried putting this in the style.css file based on a thread here.

    .site,
    .site-header {
    	max-width: 100%;
    }
    
    .bbpress-forums .col-2cl .main {
    	background: none repeat-y right 0;
    	padding-right: 0;
    }
    
    .site-content .entry-header,
    .site-content .entry-content,
    .site-content .entry-summary,
    .site-content .entry-meta, 
    .page-content {
    	max-width: 100%;
    }
    
    .form-allowed-tags {
    	display: none;
    }
    
    div.bbp-breadcrumb, 
    div.bbp-topic-tags {
    	font-size: inherit !important;
    }
    
    #bbpress-forums ul.bbp-lead-topic, 
    #bbpress-forums ul.bbp-topics, 
    #bbpress-forums ul.bbp-forums, 
    #bbpress-forums ul.bbp-replies, 
    #bbpress-forums ul.bbp-search-results {
    	font-size: inherit !important;
    }
    
    #bbpress-forums {
    	font-size: inherit !important;
    }
    
    .bbpress .hentry {
    	margin: 0 auto 48px;
    	max-width: 100%;
    }
    
    @media screen and (min-width: 1008px) {
    	.bbpress .site-content {
    		margin-right: 0;
    		margin-left: 182px;
    	}
    }
    
    @media screen and (min-width: 1080px) {
    	.bbpress .site-content {
    		margin-left: 222px;
    	}
    }
    
    @media screen and (min-width: 1218px) {
    	.bbpress .site-content .entry-content {
    		margin-right: 0;
    	}
    }
    
    @media screen and (min-width: 673px) {
    	.bbpress .site-content {
    		margin-right: 0;
    	}
    }

    If I create a page and use the short code for bbpress and tell it in the page options to do full width it works fine for the main page but not for the rest of them.

    #155565
    asefredrikson
    Participant

    I have pinpointed the problem.
    This section in the BBPress.css is breaking my themes:


    @media
    screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) {
    -webkit-text-size-adjust: none; {
    }

    @media
    only screen and (max-width: 480px) {
    #bbpress-forums div.bbp-topic-tags {
    clear: left;
    float: left;
    }
    div.bbp-search-form input,
    div.bbp-search-form button {
    font-size: 11px;
    padding: 2px;
    }
    li.bbp-forum-info,
    li.bbp-topic-title {
    width: 45%;
    }
    li.bbp-forum-topic-count,
    li.bbp-forum-reply-count,
    li.bbp-topic-voice-count,
    li.bbp-topic-reply-count {
    width: 15%;
    }
    span.bbp-reply-post-date {
    float: left;
    }
    span.bbp-admin-links {
    clear: left;
    float: left;
    }
    #bbpress-forums .bbp-forums-list li {
    display: block;
    font-size: 11px;
    }
    #bbpress-forums .bbp-body div.bbp-reply-author {
    margin: -15px 10px 10px;
    min-height: 100px;
    padding-left: 80px;
    position: relative;
    text-align: left;
    width: 100%;
    }
    #bbpress-forums div.bbp-reply-author a.bbp-author-name {
    clear: none;
    display: inline-block;
    margin-left: 0;
    word-wrap: break-word;
    }
    #bbpress-forums div.bbp-reply-author img.avatar {
    position: absolute;
    top: 15px;
    left: 0;
    width: 60px;
    height: auto;
    }
    #bbpress-forums div.bbp-reply-author .bbp-author-role {
    font-size: 12px;
    font-style: normal;
    }
    #bbpress-forums .bbp-body div.bbp-reply-content {
    clear: both;
    margin: 10px;
    padding: 0;
    }
    #bbpress-forums div.bbp-reply-content p {
    margin-bottom: 1em;
    }
    div.bbp-submit-wrapper {
    float: left;
    }
    #bbpress-forums fieldset.bbp-form {
    padding: 0 10px 10px;
    }
    #bbpress-forums #bbp-user-body {
    clear: both;
    margin-left: 0;
    word-wrap: break-word;
    }

    /* =Standard Mobile Portrait
    ————————————————————– */

    @media
    only screen and (max-width: 320px) {
    #bbpress-forums div.bbp-search-form {
    margin-bottom: 10px;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-info,
    #bbpress-forums li.bbp-body li.bbp-forum-info,
    #bbpress-forums li.bbp-header li.bbp-topic-title,
    #bbpress-forums li.bbp-body li.bbp-topic-title {
    width: 100%;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-info,
    #bbpress-forums li.bbp-header li.bbp-topic-title {
    text-align: center;
    text-transform: uppercase;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-header li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-body li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-body li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-header li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-header li.bbp-topic-reply-count,
    #bbpress-forums li.bbp-body li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-body li.bbp-topic-reply-count {
    width: 20%;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-freshness,
    #bbpress-forums li.bbp-body li.bbp-forum-freshness,
    #bbpress-forums li.bbp-header li.bbp-topic-freshness,
    #bbpress-forums li.bbp-body li.bbp-topic-freshness {
    width: 58%;
    }
    #bbpress-forums li.bbp-body li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-body li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-body li.bbp-forum-freshness,
    #bbpress-forums li.bbp-body li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-body li.bbp-topic-reply-count,
    #bbpress-forums li.bbp-body li.bbp-topic-freshness {
    margin-top: 7px;
    }
    #bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-footer {
    font-size: 10px;
    }
    #bbpress-forums li.bbp-header div.bbp-reply-author {
    text-align: left;
    width: 25%;
    }
    #bbpress-forums li.bbp-header div.bbp-reply-content {
    margin-left: 25%;
    }
    #bbpress-forums div.bbp-template-notice img.avatar,
    #bbpress-forums p.bbp-topic-meta img.avatar {
    width: 14px;
    height: auto;
    }
    #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar {
    padding: 1px;
    }
    #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar td {
    width: 20px;
    height: 20px;
    }
    #bbpress-forums div.wp-editor-container {
    width: 100%;
    overflow: auto;
    }
    #bbpress-forums input#bbp_topic_title,
    #bbpress-forums input#bbp_topic_tags {
    width: 95%;
    }

    /* =Extra Small Mobile
    ————————————————————– */

    @media
    only screen and (max-width: 240px) {
    #bbpress-forums li.bbp-header li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-header li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-body li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-body li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-header li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-header li.bbp-topic-reply-count,
    #bbpress-forums li.bbp-body li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-body li.bbp-topic-reply-count,
    #bbpress-forums li.bbp-footer div.bbp-reply-author,
    #bbpress-forums li.bbp-footer div.bbp-reply-content {
    width: 45%;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-freshness,
    #bbpress-forums li.bbp-body li.bbp-forum-freshness,
    #bbpress-forums li.bbp-header li.bbp-topic-freshness,
    #bbpress-forums li.bbp-body li.bbp-topic-freshness,
    #bbpress-forums li.bbp-header div.bbp-reply-author,
    #bbpress-forums li.bbp-header div.bbp-reply-content {
    clear: both;
    width: 100%;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-freshness,
    #bbpress-forums li.bbp-header li.bbp-topic-freshness {
    text-align: center;
    }
    #bbpress-forums li.bbp-body li.bbp-topic-freshness,
    #bbpress-forums li.bbp-header div.bbp-reply-content {
    margin-left: 0;
    text-align: left;
    }
    #bbpress-forums li.bbp-body li.bbp-topic-freshness p.bbp-topic-meta {
    display: inline-block;
    }
    #bbpress-forums li.bbp-header {
    overflow: hidden;
    }
    #bbpress-forums li.bbp-footer div.bbp-reply-content {
    display: inline-block;
    margin-left: 0;
    }
    #bbpress-forums li.bbp-body div.bbp-reply-author {
    min-height: 60px;
    padding-left: 60px;
    }
    #bbpress-forums div.bbp-reply-author img.avatar {
    width: 40px;
    height: auto;
    }

    When I remove:

    @media screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) {
    -webkit-text-size-adjust: none; {
    }

    @media
    only screen and (max-width: 480px) {


    @media
    only screen and (max-width: 240px) {


    @media
    only screen and (max-width: 240px) {

    The site looks OK again.
    Anyone know if it’s safe to remove those??

    #155529

    In reply to: Adding Icons

    Robkk
    Moderator

    @joedostie

    bbpress.org does not insert the icons with html in the topic info area , they just use CSS

    bbpress.org uses this css for any icon for the topic info.

    .sidebar .forum-info li:before, 
    .sidebar .topic-info li:before, .sidebar div ul li a:before {
    font: normal 16px/1 'dashicons';
    margin-right: 5px;
    float: left;
    padding-top: 3px;
    color: #000;
    }

    then they use this to add the star icon packaged with dashicons

    .sidebar .topic-info li.topic-favorite:before {
    content: '\f155';
    }
    #155524
    Robkk
    Moderator

    There is two sites that run bbPress that i think should be in this showcase list.

    This one is highly customized that you might think that it does not run bbPress .but if you look at some of the source code of the topic pages you will see it does.

    Discussions

    CSS-TRICKS have been running bbPress for awhile now and i think they they use the plugin quite nicely too.

    http://css-tricks.com/forums/

    #155514
    jmodine
    Participant

    How I did it is this. first I changed my css Using a child theme I just added this css to my style.css (Important to use a child theme so you don’t lose your changes.)

    #bbpress-forums .bbp-forums-list li {
    display: none !important;
    }

    .bbp-forum-title{
    display: block !important;
    font-size: 22px;
    font-weight: bold;
    border-top: 15px solid blue;
    boder-top-left-radius:5px;
    boder-top-right-radius:5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    }

    .bbp-topic-title {
    font-size: 16px !important;
    }

    What this did is I made multiple forums instead of categories. when I made the forums I used the text area to include the descriptions. Left the main topic forums closed. so no one could post on there.
    I then made sub forums (hence using my main forums as category tags) and again used the text area for the description while creating the forums. I left these open so post could be made in there.
    Now I have all kinds of styling you can change. Play with the borders margins colors and text size until you get what you like. I also found the text size to be too small for the descriptions so I used the plug in tinymce advanced to add custom fonts, font-sizes and colors for the descriptions.

    #155506
    jmodine
    Participant

    Yes its all in the CSS here is my site forums if you like the look I can help you.

    #155505
    jmodine
    Participant

    The easiest way is to do a custom CSS. make a child theme first i recomend this plug in “Child theme configuration” Down load the zip file once you chose your settgings. upload the child theme through dashboard> appearance > theme > add new then use a text editor and make a style.css for your theme (bbpress will be overridden with it) I use eclipse for a text editor but notepad will work in the style css add this code
    (this came directly from my site so it has a few changes you can change anything you like on it for more customization) you can see my forums lay out here

    
    #bbpress-forums .bbp-forums-list li {
    display: none !important;
    min-height: 50px;
    font-size: 18px;
    border: 3px solid black;
    border-top: 8px solid #871A1A;
    boder-bottom-left-radius:5px;
    boder-bottom-right-radius:5px;
    boder-top-left-radius:5px;
    boder-top-right-radius:5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    }
    
    .bbp-forum-title{
       display: block !important;
       font-size: 22px;
       font-weight: bold;
    	border-top: 15px solid blue;
    	boder-top-left-radius:5px;
    	boder-top-right-radius:5px;
    	-moz-border-radius: 5px;
    	-webkit-border-radius: 5px;
    	margin-top: 10px;
    	margin-bottom: 10px;
    }
    
    .bbp-topic-title {
    	 font-size: 16px !important;
    }
    

    Like I said any of these values are changeable and you can add more or take some out. hope this helps.

    #155336
    Robkk
    Moderator

    first remove all the CSS code you just posted , from where you are putting this custom css

    it looks all jenky..haha

    im going to use most of the CSS code i posted here

    How do i change the color of the text and box?

    /* header and footer that says AUTHOR , POSTS , VOICES, TOPICS , FORUMS */
    
    #bbpress-forums li.bbp-header, 
    #bbpress-forums li.bbp-footer {
    background: #000 !important;
    border-top: 1px solid #eee;
    font-weight: bold;
    padding: 8px;
    text-align: center;
    }
    
    /* this is the background of the forums and topics that display the title, the freshness stats and so on. */
    
    #bbpress-forums li.bbp-body ul.forum, 
    #bbpress-forums li.bbp-body ul.topic {
    border-top: 1px solid #eee;
    overflow: hidden;
    padding: 8px;
    background: #000;
    }
    
    /* this is the header that shows the post date and post ID */
    
    #bbpress-forums div.bbp-forum-header, 
    #bbpress-forums div.bbp-topic-header, 
    #bbpress-forums div.bbp-reply-header {
    background-color: #000;
    }
    
    /* try to make these two different types of dark shades if you care about having an AB color pattern of replies/topics/forums. */
    
    #bbpress-forums div.odd, 
    #bbpress-forums ul.odd {
    background-color: #000;
    }
    
    #bbpress-forums div.even, 
    #bbpress-forums ul.even {
    background-color: #000;
    }

    here is the code to remove the text decoration from the forum titles

    .bbp-forum-title,
    .bbp-forum-title a {
    text-decoration:none;
    }
    Applesauce
    Participant

    Hi, I’ve changed the background color in my bbpress forum but for some reason the background color is not affecting the padding (or so it seems). I’ve searched online and found I may need to add overflow:hidden and even overflow:auto. I’ve tried to add this to many many variations and combinations of IDs and CLASSes (there are so many!) but I can’t figure it out.

    I’m using a child theme from the 2014 WordPress theme but didn’t change too much.

    My forum is at: http://www.pippenings.com/rv-living/rv-motorhome-life-forum/

    Here is the CSS styling I’ve added to the forum so far (minus the child theme’s styling which was mostly used for changing colors…)

    Can you please help me out?

    #forums-list-0 .bbp-forum-title {
    	font-size:1.6em;
    	text-decoration:none;
    }
    
    #forums-list-0 .bbp-forum-title a:link {
    	text-decoration:none;
    }
    
    #entry-content #bbpress-forums {
    	background-color:#232d36;
    	overflow:auto;
    
    }
    
    #bbpress-forums ul, #bbpress-forums li {
    	background-color:#232d36;
    		overflow:auto;
    
    }
    
    #bbpress-forums ul.bbp-replies, bbp-body, #bbpress-forums p {
    	background-color:#232d36;
    }
    #bbpress-forums ul.forums-list-0 li.bbp-body {
    	background-color:#232d36 !important;
    		overflow:auto;
    }
    #155332

    In reply to: Change forum color

    Applesauce
    Participant

    Hi, I can’t figure out how to create a new topic so i’m choosing this topic to post in because its topic title is the closest to what I’m needing help with.

    I’ve changed the background color in my bbpress forum but for some reason the background color is not affecting the padding (or so it seems). I’ve searched online and found I may need to add overflow:hidden and even overflow:auto. I’ve tried to add this to many many variations and combinations of IDs and CLASSes (there are so many!) but I can’t figure it out.

    I’m using a child theme from the 2014 WordPress theme but didn’t change too much.

    My forum is at: http://www.pippenings.com/rv-living/rv-motorhome-life-forum/

    Here is the CSS styling I’ve added to the forum so far (minus the child theme’s styling which was mostly used for changing colors…)

    Can you please help me out?

    #forums-list-0 .bbp-forum-title {
    	font-size:1.6em;
    	text-decoration:none;
    }
    
    #forums-list-0 .bbp-forum-title a:link {
    	text-decoration:none;
    }
    
    #entry-content #bbpress-forums {
    	background-color:#232d36;
    	overflow:auto;
    
    }
    
    #bbpress-forums ul, #bbpress-forums li {
    	background-color:#232d36;
    		overflow:auto;
    
    }
    
    #bbpress-forums ul.bbp-replies, bbp-body, #bbpress-forums p {
    	background-color:#232d36;
    }
    #bbpress-forums ul.forums-list-0 li.bbp-body {
    	background-color:#232d36 !important;
    		overflow:auto;
    }
    #155330
    Robkk
    Moderator

    @schneidi76

    add this anywhere you can put custom css

    add !important at the end if it doesnt work at first too.

    to shrink username , change 12px to something lower if you want to go smaller

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

    to make user role disappear

    #bbpress-forums div.bbp-forum-author .bbp-author-role, 
    #bbpress-forums div.bbp-reply-author .bbp-author-role, 
    #bbpress-forums div.bbp-topic-author .bbp-author-role {
    display: none;
    }

    the IP is only seen by keymasters , and it is very useful if you want to block users who are spammers, but if you want to remove it just use this CSS.

    span.bbp-author-ip {
        display: none;
    }
    #155327

    In reply to: Change forum color

    Robkk
    Moderator

    @dvdfever

    ok this CSS changes every link color in bbPress to black

    #bbpress-forums a {
    	color: black;
    }

    and this CSS is for if you want any links in the topic/reply content to be a different color like blue, just like blog posts usually have.

    #bbpress-forums div.bbp-topic-content a,
    #bbpress-forums div.bbp-reply-content a {
    	background: none repeat scroll 0 0 transparent;
    	border: medium none;
    	display: inline;
    	font-weight: normal;
    	margin: 0;
    	padding: 0;
    	color: blue;
    }

    also use some of the CSS that i posted here since you have a dark background.

    How do i change the color of the text and box?

    #155320
    Robkk
    Moderator
    .bbp-forum-header a.bbp-forum-permalink, 
    .bbp-topic-header a.bbp-topic-permalink, 
    .bbp-reply-header a.bbp-reply-permalink {
    display: none;
    }

    add this anywhere you can put custom css

    #155283
    tonysyd
    Participant

    I have a new forum, for recorder players. Older folk mostly, feedback indicates a larger font is needed.

    I’m running WP 4.0.1, bbPress 2.5.4, and BuddyPress 2.1.1. Everythig is working nicely, the forum is at http://recorderforum.com/forum/ I’m using the mysitemyway Elegance theme

    Looking at a previous bbPress forum post, I was able to increase Forum and Topic font size with the following CSS

    #bbpress-forums a.bbp-forum-title,
    #bbpress-forums a.bbp-topic-permalink {
    font-size: 16px;
    }

    Using the same method, I’d like to increase the font size for

    – Forum posts/replies
    – Breadcrumbs

    Any pointers gratefully received.

    #154819
    Robkk
    Moderator

    @elenams

    i thought i replied to this one..

    pretty much the plugins stlye.css file will get you headed into styling bbPress the way you want it.

    you copy the style.css file from the bbPress plugin folder and put it into a folder called css in your child theme then edit the new style.css file from there.

    if its just small changes you can also put it into a custom css plugin of your choice.

    more information on styling bbPress.

    https://codex.bbpress.org/theme-compatibility/

    bbPress Styling Crib

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

    #154686
    Robkk
    Moderator

    anything in the style.css file really.

    more info on styling bbPress.

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

    bbPress Styling Crib

    reading the rest of the docs wont be bad to read either 🙂

    Codex

    #154994
    Talabrina
    Participant

    Hiya !
    I’ve look everywhere and was unable to find any answer. (Even Firebug refuse to show me the thing a need to change)
    I’m not a Noob in CSS / Html, but almost 😛

    I need to remove those white lines. (or change the color of it)

    I’ve made some screenshot, if anyone could help!
    (Sorry if my english is bad 🙁 )

    Lines between forums
    White lines between topics

    and my website : http://troubadours.olympe.in/forums

Viewing 25 results - 951 through 975 (of 2,719 total)
Skip to toolbar