Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 1,626 through 1,650 (of 2,740 total)
  • Author
    Search Results
  • Sunidaze
    Participant

    Or you can go through all of the theme files and remove get_sidebar.
    and
    The best way to remove a sidebar is probably to just use CSS to .sidebar { display:none }

    Will that remove the sidebar from the entire blog? I only want to remove the sidebar from the forum page, not the other pages…

    #124919
    Clicknathan
    Participant

    So I believe I’ve figured out a really simple solution to this all. My particular issue with the plugin in question in this thread is simply that it relies on users clicking a link to mark a post as read, which isn’t all that intuitive in my humblest of opinions.

    Using a built in BBPress function `echo bbp_get_topic_last_reply_url( $topic_id );` and some CSS, we can easily style unread threads.

    `echo bbp_get_topic_last_reply_url( $topic_id );` links to the latest reply in a given thread. So something like myforum.com/forum/topic/post-name/page/10/#postid-12345

    When a new reply is created, that last bit there becomes #postid-12346 and is therefore a new URL, so browsers will treat it as an unvisited link. Therefor, doing something like this gets the job done:

    `a:visited {color:red;}`

    For anyone who’d like more detail, I’ve written a complete post on exactly how to do this: http://clicknathan.com/web-design/bbpress-read-topic/

    It only involves changing one BBPress template file in your theme & adding a single line of code to your style.css file.

    #124520

    Topic: topics page style

    in forum Themes
    KittyBeth
    Participant

    Hi!
    I just updated to bbpress 2.2.3 I have buddypress using bbpress sitewide forums. Using current wordpress version with buddypress default theme and my own custom made child theme.

    Updating caused some style problems. I think I had edited some css and forgotten that I did. So I discovered I should copy bbpress.css into my theme. I have done this and have gotten rid of the awful bullets by setting #bbpress-forums to list-style:none.

    I need to align LI.bbp-topic-freshness to the right to get rid of a large margin being caused by it aligning center. I told it to align right and it didn’t cooperate! What should I try now????

    The site is http://rheum4us.org however the forum is private using the membership plugin.
    Thanks for any help!

    pdhuisman
    Participant

    I had the same problem, i resoved it by adding this code in the style.css of my twenty eleven child theme


    .forum #primary{
    width:70%;
    }

    .forum .entry-content{
    width:100%;
    }

    And then also:


    .topic #primary{
    width:70%;
    }

    .topic .entry-content{
    width:100%;
    }

    And finaly,


    .bbp-user-page #primary{
    width:70%;
    }

    .bbp-user-page .entry-content{
    width:100%;
    }

    That solved my problem. I run WP 3.5. and bbpress 2.2. Hope this helps.
    I also figured out how to change the page title and remove some space at the top. Let me knof if you are interrested.

    #124477
    common8308
    Participant

    So,, there’s no plan so far.. thanks for letting me know. 🙂
    I just decided to follow your advice and adjusted CSS to the img tags in the activity stream contents.
    Thank you for the fast reply!

    #124463

    No plans, but could be done. Since the BuddyPress activity streams contain full HTML in each item, it’s a bit of a mess to change the visual layout. You could use some targeted CSS to improve it, but until we move to having callbacks for the items, it’s pretty limited what customizations you can do.

    #124405

    Topic: Post Body Text Color

    in forum Themes
    rlrandolph
    Participant

    I cannot for the life of me figure out what CSS code is causing the text to be grey on the body section of a new forum post.

    Any help would be appreciated.

    http://troythunderbaseball.com/forums/forum/8u/

    Lynq
    Participant

    Hey all,

    I thought I would have a go at creating a quick and easy theme for people to get started using bbPress. This was built fairly quickly using one of my other themes (which are based off the default bbPress files).

    If you want to check it out then have a look at: http://www.epicwebs.co.uk/content/bbpress-theme-invision-or-phpbb-feel or check it out on github https://github.com/EpicWebs/bbPress-starter-theme-epicwebs.

    The theme allows you to get more of a phpBB or invision look to your forum. It uses the functions I posted previously on bbPress.org along with some css to get the forum looking nice by installing the theme. The forum should be pretty fluid so it will fit any width of site.

    Good luck, I hope this helps!

    #122839

    In reply to: Forum Icons ?

    anthonyluth09
    Participant

    How was this passed? just through the bbpress css or?

    #122743

    In reply to: Forum Icons ?

    Stephen Edgar
    Keymaster

    Yes… An entry in CSS for each forum

    #122742

    In reply to: Forum Icons ?

    sunnyt7
    Participant

    Sounds cool Darren.. definitely looking forward to see what it looks like.

    And Stephen, I’m guessing you have to manually create a CSS class for each forum?

    #122708
    Lynq
    Participant

    You could use…

    .bbp-content .entry-title { display: none; }

    in your css file.

    #122689

    In reply to: Forum Icons ?

    Stephen Edgar
    Keymaster

    Sounds great Darren would love to see it, feel free to Pimp your site here.

    A plugin would be cool and like Jared there is much on my plate at the moment.

    Similar to Martin’s method above I have been using a custom icon font and targeting each forum like so with CSS where in this case the forum id is 34.

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

    I tried to use div.forums-topic-datetime with display: none; but i can’t get it to work. Can you please post the whole code? I’m fairly new to CSS.

    Regarding the PHP filers…I’m not sure how to do this either. Any help would be greatly appreciated.

    #122569
    rsanchez1
    Participant

    Can you get more specific with your CSS? By that, I mean just targeting the date instead of the whole freshness block. For example, I see on my bbPress installation that the date in the forum freshness is in a child div of li.bbp-forum-freshness, which in CSS would be div.forums-topic-datetime.

    If you are more comfortable with PHP and WordPress development the forum and topic freshness links do have filters:

    bbp_get_forum_freshness_link
    bbp_get_topic_freshness_link

    Both filters pass the link html and the forum/topic id to your callback function. You could then hook to these filters, and simply have your filter callback return an empty string.

    #122561
    AllenPayne
    Participant

    Hi everyone,

    I want to remove the last post date from my bbpress forum and topic pages:

    I want only this to show up:

    Freshness

    [AVATAR IMAGE] Username

    Basically i want to get rid of the date. I tried using CSS with this code:

    li.bbp-forum-freshness a,
    li.bbp-topic-freshness a{

    display: none;

    }

    But it hides both the date and the username.

    So, how can i hide only the date and leave the username?

    Please help.

    Martin ( Martin_C )
    Participant

    Hmm, tried overflow:auto on .bbp-user-section, but it didn’t work. The stuff I posted above worked for me at AppGlobe:

    Try it with firefox here:

    http://appglobe.com/forums/users/martin/topics/

    …I think I’ve added a width of 100% as well as W3c suggests.

     

    Martin ( Martin_C )
    Participant

    Thats strange, I checked out your profile topics page in firebug and added a float left at this section:

    #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies {

    border: 1px solid #EEEEEE;
    clear: both;
    float: left; // Added this
    font-size: 12px;
    margin-bottom: 20px;
    overflow: hidden;

    }

    and when I did so it got visible.

    Try this instead at the bottom of your style.css:

    #bbpress-forums ul.bbp-topics { float: left !important; }

    Martin ( Martin_C )
    Participant

    Try this at the bottom of your  CSS file:

    #bbpress-forums .bbp-user-section ul.bbp-topics
    float: left !important;
    }

    #122455
    sureshtmp-456
    Participant

    WP 3.4.2
    BBPress Plugin – 2.2.2

    1) Installed BBPress plugin. Did basic setting in admin for the plugin.
    2) Copied archive-forum.php and single-forum.php from bbpress plugin directory to mytheme root directory.
    3) Copied “css/bbpress.css” to mytheme root directory and then customized.
    4) Installed “bbPress Search Widget” plugin. Put it in Primary Area.
    5) That’s it. I have not created any new template/page for the forum.

    All look fine and working but I have this problem.
    If you go to this page http://www.clouni.com/askquestions/
    You will notice the search widget in lower right side. How can I put it above the forum breadcrumb “CLOUNI › Forums” ?

    #122454
    sureshtmp-456
    Participant

    WP 3.4.2
    BBPress Plugin – 2.2.2

    1) Installed BBPress plugin. Did basic setting in admin for the plugin.
    2) Copied archive-forum.php and single-forum.php from bbpress plugin directory to mytheme root directory.
    3) Copied “css/bbpress.css” to mytheme root directory and then customized.
    4) That’s it. I have not created any new template/page for the forum.

    All look fine and working but I have this problem.

    If you go to this link http://www.clouni.com/askquestions/

    You will notice the title “Forums” in left side. How can I hide it ? If I understand correctly, it is page title generated through wordpress. But how to hide it only for forum pages and not other page in wordpress ??

    #122450

    In reply to: Forum Icons ?

    Martin ( Martin_C )
    Participant

    If you know CSS you can easily add some styles to your to style sheet. If you use the default templete, it could look like this:

    .bbPress.forum .entry-title {

    /*Styles to add icon image to the left of this element goes here*/

    }

    #122435

    Topic: Forum page title ?

    in forum Themes
    Darren1981
    Participant

    Hi how do i edit the forum title for the main forum page.. I just want to add some .css to the header “Forums” but can’t find what template i need to edit to start hacking up.

    Thanks

    Regards, Darren

    #121756
    LabSecrets
    Participant

    There is a div in your header.php file that contains the top search box. This could be modified to add a login box or login link (better, IMHO).  Since I don’t have access to your theme files, you will have to tweak the css a bit, and put it into your style sheet (I’m showing it inline here just by example):

    <div id=”top_area”><section class=”widget widget_search” id=”search-4″><a href=”/wp-login.php” style=”float:left; display:inline-block;margin-right:20px”>Login</a> <form action=”http://aftertasty.com&#8221; id=”searchform” method=”get” style=”width:400px;”>

     

     

     

    #121413
    LabSecrets
    Participant

    Making a child theme is beyond the scope of this forum, but there are plenty of good resources if you google “create a wordpress child theme”.  In a nutshell, you need “at least” to have a new folder, with a style.css file that references the proper header elements of your parent, including its name and the location of the parent theme’s style sheet.

    If you are using the shortcode method, please try the default method instead, which is to change bbPress’s default root slug to something that is “NOT” an existing page (try “sitewide-forums” for example). This will allow you to keep your existing page / shortcut method index. Please show us what happens when you do this? (provide the URL)

Viewing 25 results - 1,626 through 1,650 (of 2,740 total)
Skip to toolbar