Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 1,351 through 1,375 (of 2,719 total)
  • Author
    Search Results
  • #141096
    jilliannec
    Participant

    Hi All,

    I am having the exact same issue. When a topic is started the new post content is not being displayed so what my users are doing is posting a ‘reply’ with the same content and then it appears. Although – what is really happening is they are posting twice!

    So – a new topic is being created, along with the link to the topic in the forum but when a user clicks on it there is not content.

    I have tried the css fixes to no avail and am not using the WP-WishList plugin as indicated in some other similar bbPress.org forum posts. Any ideas would be helpful!

    Jillianne

    Mod: I moved this to it’s own topic as it was not the same issue as the original topic.

    #141068
    piccart
    Participant

    Hello!

    I have a client who wants to display the bbpress sidebar in the forum pages in a different way.
    He want to make it narrow and with smaller fonts.

    the problem is that the bbpress sidebar is registered with no particular wrapper id, so if I edit the css, all the sidebars in the website will be changed and not only the forum one.

    I am looking to find the file where the sidebar is registered, in order to alter the code and add a specific id (like #bbpress-sidebar) to the sidebar, so I’ll be able to make a custom css for the sidebar sub-classes only for the children of that id.

    I’ve looked into millions of files but I haven’t found it, can someone please help me?
    Thanx!
    Andrea

    #141053
    Stephen Edgar
    Keymaster

    This should do the trick 🙂 Then just add some styling via CSS or the HTML markup in the function below and add it to your themes functions.php file.

    
    function ntwb_forum_link() {
    	?>
        <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a>
        <?php
    }
    
    add_action( 'bbp_template_after_replies_loop', 'ntwb_forum_link' );

    Update: Or just download the gist here and install it as a plugin 😉
    https://gist.github.com/ntwb/8295783

    #140975
    Shawn74
    Participant

    Hello,
    thanks for the tip, it’s working perfectly…now i have a picture before the Forum Title…excatly what i need…

    Anyway i need to know how to edit it’s CSS style…

    I’m using Firebug and i was able to edit the CSS style for the topic’s thumbnails to get identical as the buddypress one…with a circle box as border…
    You should see here hxxp://www.thepanicroom.it/forum/forum/panics-room-forum/

    Unfortunately when i analyze the picture your code added, i have no idea on how to find a CSS line to modify…i get only html div span body etc etc

    I tried to change the class name to ‘Thumbnail’ and i got a perfect thumbnail…. i changed it to Avatar but no result…i also declred it exactly like the Buddypress do…but nothing to do, the picture come back to the default one…

    Please sorry for my really wild and bad english 🙂

    Thank you so much…

    #140948
    artkahlich
    Participant

    The short answer is: no difference.

    I think I get what you are asking… I did the following:

    cd wp-content/themes/copyOf2014
    sudo cp page.php bbpress.php

    That did not affect behavior on my desktop browser, which continues to render properly. Neither did it change anything on my Android Chrome browser, which still shows a mostly blank page with only the single word “Forums” when I go to “http://mysite.com/forums/&#8221;.

    I have – as recommended – copied the twentyfourteen theme so that I could make font and margin adjustments, as well as changing the top and side bars from black to very light gray with black text. That “copyOf2014” also contains – again I believe as recommended – a copied “bbpress” sub-directory with a lot of php files and a copied “css” sub-directory with “bbpress.css” among other .css files.

    #140865
    Matoca
    Participant

    I decided not to try to change the name of the forum midstream so I started from scratch, removing any forum from the new site. Again, the 2 forums imported ok. The topics imported ok, up to a point. This has been a real disaster.

    The replies imported but none of them are assigned to the proper forum, that box says “no parent”. I am having to go through over 500 replies in the dashboard and assign each one by hand to the forum it belongs to. That involves referring to the old forum continually to make sure that I am getting it correct.

    But it gets worse. Other values for some of the replies are also messed up, such that I have to search the original forum to find these replies and fix the forum assignment, the topic number value, and if there is a reply to a reply, I have to find the reply number value that the reply is responding to. But I have a process and it is getting done.

    My question, and what I need help with, is how to fix how the “replies to replies” are displayed. In the old forum that I exported these from, these replies to replies were offset to the right and colored a med gray so they stood out as different. The CSS is correctly set for the new forum to color them gray. But the color is not there and these replies to replies are not offset to the right.

    So the end result is that these replies to replies are placed in between the wrong replies and are not near the correct reply. The content flow makes no sense. I do have the correct “reply to” number values set in the dashboard so it should know which reply it is associated with.

    What controls how these replies to replies are colored and moved to the right under their parent replies? How did that get lost in the export/import? What can I do now to fix this?
    Thank you,
    Matoca

    #140766
    netfux
    Participant

    Thank’s Thank’s Thank’s! You did it… I put the following code in custom theme css:

    #bbp-forum-709 .bbp-forum-topic-count,
    #bbp-forum-709 .bbp-forum-reply-count,
    #bbp-forum-709 p.bbp-topic-meta {
    display: none;
    }
    #bbp-forum-1085 .bbp-forum-topic-count,
    #bbp-forum-1085 .bbp-forum-reply-count,
    #bbp-forum-1085 p.bbp-topic-meta {
    display: none;
    }

    #bbp-forum-700 .bbp-forum-topic-count,
    #bbp-forum-700 .bbp-forum-reply-count,
    #bbp-forum-700 p.bbp-topic-meta {
    display: none;
    }
    #bbp-forum-702 .bbp-forum-topic-count,
    #bbp-forum-702 .bbp-forum-reply-count,
    #bbp-forum-702 p.bbp-topic-meta {
    display: none;
    }
    #bbp-forum-1032 .bbp-forum-topic-count,
    #bbp-forum-1032 .bbp-forum-reply-count,
    #bbp-forum-1032 p.bbp-topic-meta {
    display: none;
    }
    #bbp-forum-1045 .bbp-forum-topic-count,
    #bbp-forum-1045 .bbp-forum-reply-count,
    #bbp-forum-1045 p.bbp-topic-meta {
    display: none;
    }
    ———

    I guess there is a cleaner way to put it, but now it’s working. I also needed the thumbnail and info above dissapear so I found the p.bbp-topic-meta code was it…

    The only thing that I need now is to know how can I center those forum titles at the center of the page, also center the height between lines…

    Thank’s

    #140761
    mauryg
    Participant

    @Stephen

    Thanks for the reply.
    You’re correct. The first two points were covered except that I need to test if I can eliminate the ‘All Members’ public group and just use a sitewide forum.
    In the meantime I had successfully upgraded to bbPress 2.5.1 and I have now gone to 2.5.2.
    I’ll check the theme compatibility article although I am using a child theme of Suffusion and I have installed the Suffusion bbPress pack.
    The threaded reply setting was enabled to a depth of ‘2’. The first reply was at the same level as the original posting and the reply to that was indented one level. When I increased the depth to ‘4’ and added more replies to replies, the threading worked. I guess I can live with the first reply being at the same level or I can muck around with the CSS if need be. 😉

    Happy New Year

    Maury

    #140713
    Stephen Edgar
    Keymaster

    Add some custom CSS to your theme:

    Eg. For the ‘Notícias’ forum

    #bbp-forum-709 .bbp-forum-topic-count, 
    #bbp-forum-709 .bbp-forum-reply-count {
    display: none;
    }

    Yes, that was spam, now deleted

    #140701

    Topic: Modify "New Post" Form

    in forum Themes
    RyanSSealey
    Participant

    Site: http://dubiousdata.net/forums/forum/news
    WP Version: 3.8
    bbPress Version: 2.5.2

    I would like to modify the new post form that displays below the current topics in a forum. I was trying to do it with only CSS, but I have run into a problem.

    I want to remove the “Topic Tags” field below the body area. I initially tried with the following CSS:

    label[for=bbp_topic_tags],
    input[id=bbp_topic_tags] {
    display: none;
    }

    This removed the form and label themselves, but there is a <p> </p> tag around these with no Class or other identifier, leaving a noticeable space.

    What is the best way to accomplish this or modify the form?

    #140690
    netfux
    Participant

    Hi mate, I put that in bbforums.css with no result on centering the Main page titles…

    Any answer out there? Pleaseeeeee

    #140660

    In reply to: Forum Icons ?

    WPDragon
    Participant

    Hi @netweb – I am trying to do exactly the same thing with adding a small image icon next the Forum name.

    I tried to follow your CSS example, but im abit confused….Can you please help with how to get it working properly.

    Your Example:

    .bbp-forum-34 i:before {
      content: "\e112"; /* glyphicons_ */
    }

    So – .bbp-forum-34 <— this I change to the name of my forum id.
    content: "\e112"; <— what is this & goes here?
    /* glyphicons_ */ <—- what is this & goes here?

    Any type of response would be appreciated! Thanks!

    #140621
    fabiankainz
    Participant

    Hey, I’m no expert in using bbpress and buddypress and so I’m facing some problems with integrating bbpress to my buddypress.
    I already have a css for my buddypress group forums. Now my Question:
    Is it possible to use this stylesheet for my bbpress forum? or are there other solutions?
    I want my group forums to be displayed on ONE site but still separated. So each group should have its own “directory”.
    Any Ideas?

    #140588
    netfux
    Participant

    Hi mate, I put that in bbforums.css with no result on centering the Main page titles…

    #140583
    almightyeonni
    Participant

    Hello!
    I’m currently setting up a bbPress forum on my WordPress website and I have one problem.
    The “Submit” button is not recognizeable as “Submit” button because the colours are not strong enough.
    Here is what it looks like:

    If there is some sun shining on the computer screen, the “Submit” button can’t be seen at all. 🙁
    So can someone please help me? I want to change the main colour of the button to slightly darker gray while the text in it saying “Submit” should be black.
    How can I change the button colours?

    (Please keep explanations easy. I don’t really know much about CSS and such.)

    WordPress version: 3.8
    bbPress version: 2.5.1

    #140535

    Topic: Forum Themes?

    in forum Themes
    Owen Bick
    Participant

    Hi, everyone!
    I need a theme for my bbPress forum. I only want to change the theme for the forum, not the site. The site should look the same. I don’t know much CSS so I can’t change the style of the forum. I want the forum to look like http://forum.arvixe.com/smf/

    Here’s my site: http://www.covalty.com

    Thanks 😀

    #140480
    koendb
    Participant

    Hi, I want to disable the default bbpress .css file. I searched through the forums and found several solutions, but none seem to work.

    I used to deregister bbp-default-bbpress with the code below, but that doesn’t work anymore after the WP 3.8 upgrade.

    add_action( 'wp_print_styles', 'deregister_bbpress_styles', 15 );
    function deregister_bbpress_styles() {
     wp_deregister_style( 'bbp-default-bbpress' );
    }

    WP 3.8
    bbpress 2.5.1

    Thanks!

    #140453
    Lynqoid
    Participant

    I would highly recommend looking into learning a little CSS, even a small amount can let you achieve a lot in bbPress and even WordPress.

    Something you can do for example is: #bbpress-forums { background-color: #ffffff; color: #000000; } – this is just an example.

    Good luck! 🙂

    #140430
    fishfanatix
    Participant

    I’m having issues with the font or background color on my bbpress forums page. The font is to light I cant read anything. Can someone please explain to me how to change the color. I’m a beginner at all this so I don’t know any css but I can look it up. I tried to do it under the stylesheet under editor but I cant find the code. my website is fishfanatixblog.com and click the buy/sale/trade tab and see it.

    ozgurpolat
    Participant

    Hi Stephen ( @netweb ), Thank you for the quick reply, the issue you mentioned (http://www.kriesi.at/support/topic/bbpress-user-profile-page-problem/) was a different problem, I had to create a page called “blog” for bbpress to work with this theme. After creating this page everything worked smoothly until I upgraded to bbpress 2.4.

    To be honest I thought that the problem was my theme, and not bbpress. BUT … this problem did not occur with my current theme until I upgraded to bbpress 2.4. It only happened when I upgraded to new version. In order to demonstrate, I replaced my theme with standard buddypress theme. I also removed all the other plug-ins you mentioned, If you log in now as the guest user you will see this css problem even with the buddypress theme.

    If you log out (s2 member is removed) and look at the same forum when logged out the css problem does not occur. Only when you log in as subscriber. (http://megm.wpengine.com/forums/forum/magazine-articles/july-december-2013/)

    Kind regards

    #140259
    ronthai
    Participant

    For what you want you could always make use of the Recent Topics Widget and setup a whole new page/index.php that shows:

    Forum name
    Recent Topics widget for that forum only

    Forum name
    Recent Topics widget for that forum only

    Seems a lot simpler then changing the core files, which will be an issue for updates.
    The look of the widget can be easily altered by css

    robgranholm
    Participant

    I need this fixed, it likely only needs some CSS magic to resolve, I’m now fed up and need it working for a client so I’d like to pay for someone to assist.

    I’ve seen this bug in a few places on the site.

    I have the wrong navigation page menu item highlighting when on my forum page. See here: http://bit.ly/1j3Vrkh

    I know there is a CSS work around to force proper highlighting but I can’t seem to figure it out.

    The site is located at http://dev.itarsenal.com
    username & pass

    Go to forum page, and you’ll see what I mean, help is much appreciated.

    Moderator Note: I removed the user/pass as this is now resolved

    #140145
    robgranholm
    Participant

    Hmm You are not understanding, this picture will make it clear.

    It is not right for everyone.

    When you click on the menu item Forum, and are brought to the Forum page, the incorrect page is then highlighted.

    See here with arrows to show you what I mean: http://bit.ly/1gZvkXd

    What SHOULD be happening, is that Forums should be highlighted as that is the correct page, and what the site loading for the current page.

    I see on this thread https://bbpress.org/forums/topic/navigation-problem-current_page_item-not-set-for-forums-in-navigation-tabs/ someone had tried to solve it using CSS, to force highlighting the correct menu item, but I am having trouble with that, and looking for assistance.

    -r

    #140140
    KnightOfAmsterdam
    Participant

    Hello people of bbPress.
    I’m having one weird issue with my bbPress forum on the website I’m building.
    I can’t quite let you see it, but I have attached an image.

    The problem I'm having.

    I’m quite sure that this isn’t a CSS error, but rather some HTML bug of some kind.
    I what I can’t figure out is where this is in the code.
    The forum is adding “split” attributes to its elements, I’ve tried removing those.

    What I’m wondering is, is this a HTML bug or is this a bug in a php loop?
    Please answer this as soon as possible.

    Thanks in advance,
    The knight of Amsterdam

    #140108
    robgranholm
    Participant

    Thanks for the response, I’m coming back now to say I’ve figured this out.

    Pagelines actually has a plugin to integrate with BBpress which lets you control this from their system.

    If I could only figure how to get the right menu item to highlight when on the forum, can you assist with that? I’ve described the problem, and given the site information here: https://bbpress.org/forums/topic/wrong-navigation-current_page-need-css-help/

    Thank you!

Viewing 25 results - 1,351 through 1,375 (of 2,719 total)
Skip to toolbar