Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 776 through 800 (of 2,723 total)
  • Author
    Search Results
  • #163842

    In reply to: CSS..?

    Uncle Jimmy
    Participant

    @robkk

    Here’s how it’s looking so far; http://christianitees.infinigrafix.com/forum/

    I still haven’t figured out how to place the post count into an icon font. I did it with css for now. Know any good tutorials for that?

    Sorry about that last Reply, the option to Edit it again wasn’t available.. ? I would like to clean it up, I didn’t realize certain tags wouldn’t work.

    #163831
    Robkk
    Moderator

    Your theme is causing the issue , especially its styles for WordPress comments.

    Try this custom CSS

    #bbpress-forums .reply a {
      font-size: inherit;
      line-height: inherit;
      margin: 0;
      padding: 0;
      float: none;
      color: #c1052c;
    }
    
    #bbpress-forums .reply a:hover {
      color: #42a202;
    }

    Also in your CSS your links do not really have a defined color to them. There is this CSS, but it should be something like this #c1052c

    p a, a {
      color: c1052c;
    }
    #163825

    In reply to: CSS..?

    Uncle Jimmy
    Participant

    @Robkk

    First off, thank you! for pointing me to files Rob, that’s always my first battle. And thanks for giving me the clues to the solutions.

    I got notified right when you replied, on Sunday no less! And was SO excited! Thanks for responding on your personal time.

    Now I’m just trying to sort out your recommendations..lol! Seeing what files to work on helps me focus my learning curve.

    The avatar on the left (in the Edited View of above image) is going to hook back to the authors Buddypress Profile. Seeing that the file is structured in an unordered list helps me understand what’s happening with the php a little better.

    I have too much to learn! lol!, I wish there was a forum where services could be traded. :o)

    Here is how I sorted it out;

    First
    This article provided a snippet example that showed me the correct statement to put into a <li></li> right above the top li in loop-single-topic.php, I only had to add the class="bbp-topic-author-link" to the li, and then tell it to float-left/padding-0,10 in the child-theme/bbPress/css and voila! Wooohoooooo!!! Sorry, I get excited when things go right! lol!

    Second
    I commented out the Forum Titles – Voices/Freshness in loop-topics.php like this

    <!-- 			<li class="bbp-topic-voice-count"><?php _e( 'Voices', 'bbpress' ); ?></li>
    			<li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li>
     -->

    ..and then move the reply count over & under Freshness, (again, with css)

    Third
    I’ll be back, I like to keep a record in my Topics here, cause I know!, I’ll forget! lol!

    #163743

    Topic: CSS..?

    in forum Themes
    Uncle Jimmy
    Participant

    Hello everyone!

    I wasn’t sure where to post, or what exactly to ask..lol! Is it possible to make the changes in the image with CSS? Or does it have to be done within the php files?

    I’ve looked all over the internet for specific tutorials to accomplish this and can’t find anything definitive enough.

    Wordpress/Buddypress/bbPress.. That’s the combination I want to stick with but wrapping my mind around it is very difficult, even with all the great documentation! Ha!

    Any suggestions are welcome and thanks. Jim :o)

    Forum Template Edit

    Robkk
    Moderator

    I have found a way to hide most notices by CSS. Question is, can I keep it that way, or will there be any important notices not showing up later when the user is interacting with the form:

    Well that is the thing , I would have to know what is important to you. The notice that shows when a users post is in moderation might be useful so that they know the moderator has to approve their post , but that will not be in til 2.6 of bbPress. Some plugins might hook into that , and some notices might be for post flooding and maybe some users might think their is a bug on your site if they do not know why they couldn’t post.

    The Topic/Forum descriptions could also be removed with some PHP using this function and you can place it in a plugin like this.

    https://wordpress.org/plugins/functionality/

    It should be Plugins > Edit Functions. You can place any code snippet you might see useful into this.

    You can place the snippet after the plugin information.

    add_filter( 'bbp_get_single_forum_description', 'ja_return_blank' );
    
    add_filter( 'bbp_get_single_topic_description', 'ja_return_blank' );
    
    function ja_return_blank() {
    
        return '';
    
    }

    The users plugin you suggest is from 2 years ago; I would not install that. I am told again and again by my hoster and main plugin providers that old plugins are one of the greatest vulnerabilities.

    It should be fine , it is a fairly small plugin and very well coded.

    You can see the plugins main code functionality in the link below. There is also an empty languages folder and a readme.txt file also in the plugin.

    https://gist.github.com/jaredatch/3868274

    And then I had to turn off the buttons for html because they are badly formatted, barely legible in white text on light-grey background.

    You can fix that with some CSS too. Here is a simple black background to fix it.

    #bbpress-forums #qt_bbp_reply_content_toolbar input,
    #bbpress-forums #qt_bbp_topic_content_toolbar input {
      background-color: #000;
    }

    I also would like to offer my clients a possibility to create a profile page with some background on themselves and the business project they are working on.

    There is a bunch of plugins that add custom fields like BuddyPress some premium plugins add social features too , just like BuddyPress. The thing I am guessing you want is to highlight it on the Home of the users profile page with the forum role and user stats. This would require some PHP coding to achieve. By default the user can add a description and it would show up on the front-end , nothing too crazy.

    nmschaller
    Participant

    Hello robkk,

    Thank you very much for your answers. They helps me get started.

    I have found a way to hide most notices by CSS. Question is, can I keep it that way, or will there be any important notices not showing up later when the user is interacting with the form:

    /* bbpress */
    div.bbp-template-notice.info {
    display: none;
    }
    
    div.bbp-template-notice {
    display: none;
    }
    

    The bbpress pages cause me headaches. The original bbpress pages for forum index and user page all come out unformatted in my theme, practically useless. I have created a forums page by using shortcodes for forum index and topics index. That is well formatted and informative. But only with one level of hierarchy.

    The users plugin you suggest is from 2 years ago; I would not install that. I am told again and again by my hoster and main plugin providers that old plugins are one of the greatest vulnerabilities. Isn’t there a way to block all access to pages containing mysite/forums/users/* in .htaccess or something like that?

    And then I had to turn off the buttons for html because they are badly formatted, barely legible in white text on light-grey background.

    I also would like to offer my clients a possibility to create a profile page with some background on themselves and the business project they are working on. I have tried BuddyPress but it is not for me. I cannot code and this seems to be necessary to effectively use BuddyPress. So, I have not found a good solution for that yet. For the moment I have chosen to go with the wordpress.com/gravatar profiles and encourage people to introduce themselves and their project in the forum.

    Nicole

    Robkk
    Moderator

    How do I eliminate:

    Notices from “This forum is empty.” and “Oh bother! No topics were found here!” That’s obvious when I open a new forum. I would post welcomes if that would solve the problem. But I have seen that this replaces the notices with even longer info that probably nobody wants to read.

    You can create a topic. A super sticky topic should show above all forums if you want to have a welcome topic or a general rules topic, if that is what you want. Creating a topic in a forum should remove that notice.

    What wouldn’t they want to read? Please explain more on this. Is it the Topic/Forum descriptions??

    “Maximum Length: 80″ for the title – People will notice.

    Well yeah that is the point so that they know the max characters to use in a topic, you can remove it but it would require a template edit.

    Do you know how to use FTP , use a file editor like notpad++ , and possibly create a child theme?? I can what file to edit as long as you put the file in your child theme in a folder called bbpress.

    Further notices like “Your account has the ability to post unrestricted HTML content.” makes people probably think: When do I get to the posting form?

    Only Keymasters/Admins can see this notice. Regular participants cannot post unrestricted html content for security reasons. This is another notice that would require a template edit to remove the specific notice?? I can show you some CSS to remove all notices but you might find them handy. Do you want to remove all the notices?

    Topic status: … closed. In an open discussion, who decides when a topic is closed?

    Keymasters and Moderators should only close topics.

    Is there any plugin with which I can deactivate this?

    No.

    How can I block these pages from being publicly viewed? The forums and the participants profiles shall all be private.

    You can use this plugin , but it is best without BuddyPress.

    https://wordpress.org/plugins/bbpress-members-only/

    #163702
    jamborambo7
    Participant

    Hello everyone,

    I am having an issue with trying to make my bbpress forum full-width. I’ve looked through several troubleshooting guides and nothing has seemed to work. I am using Marketica theme with bbpress plugin.

    From this link below:
    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/
    I’ve located the file it is pulling from (through What the File plugin) and it is from bbpress.php (since I copied a page.php file and renamed it to bbpress.php and added it into my Marketica child theme) file directory.

    I then changed the style.css file in the Marketica child theme and injected:

    .bbPress #primary {
    display: none;
    }
    .bbp-forums {
    width: 100%;
    }

    I’ve tried other css stylings that I found online and nothing seems to have worked. Can someone please help me? I’m running out of ideas! Thank you all in advance.

    nmschaller
    Participant

    Hello,

    I’d appreciate your help on this.

    I’d love to integrate forums into my wordpress site, but how do I get rid of all the clutter in bbpress?

    There is really cool community software out there like Flarum or the P2 theme that put the focus on the people discussing and on the topics, not on status infos.

    That makes me wonder: How do I get bbpress to be more like them while maintaining the basic functionality of the forum software and the look and feel of my theme?

    How do I eliminate:

    – Notices from “This forum is empty.” and “Oh bother! No topics were found here!” That’s obvious when I open a new forum. I would post welcomes if that would solve the problem. But I have seen that this replaces the notices with even longer info that probably nobody wants to read.

    – Further notices like “Your account has the ability to post unrestricted HTML content.” makes people probably think: When do I get to the posting form?

    – “Maximum Length: 80” for the title – People will notice.

    – Topic status: … closed. In an open discussion, who decides when a topic is closed?

    These are just some examples.

    I do not know how to edit functions.php. I have fields for Filters and Hooks in my theme options, but I would need clear instructions where to put what, or some CSS.

    Is there any plugin with which I can deactivate this?

    Thanks a lot for some hints.

    Nicole

    #163625
    RemcoH
    Participant

    Not yet. The problem is not with full-width pages but with content-sidebar pages:) https://bfgv.nl/forums/zoeken/test/

    Still cant figure out how to isolate the forum from the rest of the site’s css.

    #163583

    Topic: Width change

    in forum Showcase
    klayshen
    Participant

    hello im new to using bbpress and need some help im trying to find in the css file for bbpress the width of the entire forum window and can not find it please help

    orko9696
    Participant

    I need to change the table header “Forum” to “Index”, searched for a while but didnt found any fix yet.
    Isnt there any css hack available?

    #163516
    Robkk
    Moderator

    @lilmisskatie

    Its the themes CSS causing an issue with the input box for the topic title.

    This custom CSS should do it.

    #bbpress-forums input#bbp_topic_title {
    	float: none;
    	padding: none;
    }
    
    #bbpress-forums .bbp-form p {
    	float: none;
    	margin: 0;
    }

    Tell your themes support this too.

    If you feel like donating you can do so here

    About Me

    #163491
    sharongraylac
    Participant

    Hello!

    For some reason the “Topics Started” tab (on profile pages) works correctly, showing only the titles of forum posts. However, the “Replies Created” shows the full post.

    Since these are private forums, I’m concerned about the general public accessing these posts.

    Does anyone know how to fix this issue?

    Here’s a sample link: http://bellynsoul.com/members/admin/forums/replies/

    (Please ignore the css issues- I’m in the middle of customizing.)

    Thanks so much!
    Sharon
    bellynsoul.com

    #163432
    mshivsharan
    Participant

    Hey @Robkk,
    The updated link is http://www.theiotportal.com/forum/iot-forum
    I don’t know how to use CSS to hide it…
    Could you help me out please?

    #163394
    RemcoH
    Participant

    Hi, not yet.

    I changed that page to a fullwidth page. The issue with the padding remains. I tried to use some other css but that also effects the bbpress layout.

    See this page where the output is still with a padding: https://bfgv.nl/forums/zoeken/test/

    How can I remove the padding here without effecting the rest?

    #163358
    rolyestemonio
    Participant

    Hi Everyone,

    I am just newbie on this forum bbPress and i guess something is not right with this part:

    Step 6: Copy the Default bbPress Theme to Your Child Theme Folder

    The default files are no longer stored in wp-content > plugins > bbpress > bbp-themes. There is a folder called default at bbpress > templates > default, but which files need copying I do not know.

    While still in FTP and looking at the root folder of your WordPress installation, go to bbPress’ theme folder. That is, go to wp-content > plugins > bbpress > bbp-themes > bbp-twentyten. Download all the files from this folder except style.css. These are the files that will style your bbPress theme.

    Now return to your child theme folder (wp-content > themes > yourthemefolder-child). Upload the default bbPress theme files to the child theme folder. You can change the image you see for your child theme in the admin area by uploading a new screenshot.png image to this folder.

    I did not saw wp-content > plugins > bbpress > bbp-themes > bbp-twentyten the plugin directory so maybe it was mess i guess. What i saw is this wp-content > plugins > bbpress > templates > default.

    Any helps should highly appreciated.

    Thanks.

    #163167
    Joe Dirt
    Participant

    When I click the Forum link on the main menu to my site I am taken to the forum page. The menu link is of course the “active” link and highlighted in blue.

    But when I click on any of the forums the Forum link in the menu is no longer “active”

    I would like my Forum menu link to stay “active” (w/blue hyperlink) whenever users are within any of my forum sections.

    Is this possible?
    Implementing this with css would be great.

    My site is: http://www.carrielachance.com

    #163130
    Robkk
    Moderator

    No you were trying to find this code as if it was already in your theme , I just showed you the original code so you could understand why it was causing the issue.

    But just place this CSS code where you would put custom CSS like what I already listed.

    You do not have to replace any code just add it as custom css

    #bbpress-forums .single_post a {
      font-size: 12px !important;
      margin-left: 0 !Important;
    }

    Since your bbPress forums look custom I can’t tell which is custom and what could be your theme so you would have to edit this code and replace the original code in the bbpress.css file if you want or just place it in some other custom css areas with !important after the width to help out.

    You can place the code in the bbpress.css file where you want , it is your site
    the two places i said would be better for beginners so that the code doesn’t conflict with the media queries.

    li.bbp-forum-topic-count,
    li.bbp-topic-voice-count,
    li.bbp-forum-reply-count,
    li.bbp-topic-reply-count {
    border: 0px none;
    width: 10% !important;
    margin-right: 20px !important;
    margin-top: 0px !important;
    }
    #163129
    stiffmeister12
    Participant

    Okay so if I am understanding this correct (sorry im still learning this stuff)
    for my themes style.css files you want me to find the code

    .single_post a {
    font-size: 14px ;
    margin-left: 0 ;
    }
    and replace it with

    #bbpress-forums .single_post a {
    font-size: 12px !important;
    margin-left: 0 !Important;
    }

    And for this code

    li.bbp-forum-topic-count,
    li.bbp-topic-voice-count,
    li.bbp-forum-reply-count,
    li.bbp-topic-reply-count {
    border: 0px none;
    width: 10% !important;
    margin-right: 20px !important;
    margin-top: 0px !important;
    }
    you want me to open up the bbpress.css and add it above the media queries or just at the top above the other css rules?

    #163127
    Robkk
    Moderator

    Your theme had something similar to this CSS

    .single_post a {
      font-size: 14px ;
      margin-left: 0 ;
    }

    So the new CSS I gave you would overwrite it only on bbPress forums.

    you can add it

    to your child themes style.css

    in a custom css plugin

    and you could add it to the bbpress.css file if you put it in your child theme in a folder called css somewhere above the media queries or just at the top above the other css rules.

    #163124
    stiffmeister12
    Participant

    I just checked my themes style.css and there is nothing with bbpress forums in it right now for some reason there is however css code in my responsive.css for bbpress forums

    #bbpress-forums .status-category li.bbp-in-forum-freshness {
    margin-left: 1px;
    width: 33.494% !important;

    #bbpress-forums .bbp-topics li.bbp-body ul.topic {
    border-bottom: medium none !important;
    border-left: 0 none !important;
    border-top: 2px solid #aaa !important;
    box-shadow: 1px 1px 0.5px 0 rgb(221, 221, 221);

    #163112
    Robkk
    Moderator

    This seems very custom , looks pretty good though

    The bbPress forum header labels have certain widths to them. So this is the CSS you might want to adjust.

    li.bbp-forum-topic-count, 
    li.bbp-topic-voice-count, 
    li.bbp-forum-reply-count, 
    li.bbp-topic-reply-count {
      border: 0px none;
      width: 10% !important;
      margin-right: 20px !important;
      margin-top: 0px !important;
    }

    It might look shifted because you are trying to make your forums look more table like.

    The username being shifted is because of some CSS from your theme being added into bbPress.

    This custom css might help.

    #bbpress-forums .single_post a {
      font-size: 12px !important;
      margin-left: 0 !Important;
    }
    #163110
    stiffmeister12
    Participant

    So I am using a custom theme for my site and when I integrated bbpress into my theme the alignment is just off for some reason. On the home page the top bar is a little miss aligned where it says “topics” and “posts” Link – http://dailymut.com/dailymut-forums/

    When I go into a topic the alignment is really off under “topic” and a part of background is missing under “voices” “posts” and “freshness”. And There is a random circle over the “voices” text for some reason. Link – http://dailymut.com/forums/forum/madden/mut-player-reviews/

    Finally when I go into the Topic The picture is not aligned with the username and the text box looks off as well.

    I have tried to change the style.css and I have tried to change the bbpress CSS and nothing has worked maybe im imputing the wrong code or maybe im not in putting it correctly. Either way if anyone can check it out and see what the problem is and could tell me what code to input and where specifically to put it that would be greatly appreciated.

    Robkk
    Moderator

    I do not see the issue on your site currently.

    I do see these weird avatar image placement though.

    Add this CSS to fix that issue.

    #bbpress-forums p.bbp-topic-meta img.avatar {
      display: inline !important;
    }
Viewing 25 results - 776 through 800 (of 2,723 total)
Skip to toolbar