Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 2,376 through 2,400 (of 2,740 total)
  • Author
    Search Results
  • chrishajer
    Participant

    In your template file called front-page.php, find the section that outputs the table of forums (#forumlist) and make the cells taller or fixed width and variable height or something. It can all be done in your template files and your style.css.

    chrishajer
    Participant

    Sounds like you need a shorter description or you need to use some CSS to change the size of the text, hide the overflow or break it onto 2 lines. Maybe you need to make the table cell taller. I don’t see a link to your forum so I can’t suggest exactly what CSS to change to make that happen.

    #73076
    #73075
    #73074
    adv_user
    Member

    Ok, but I also need to include sub-subForum inside the class “subforum”, don’t below.

    And I am having trouble doing it…

    #4198
    eclipsei
    Member

    Hello,

    I followed this guide http://www.cssjockey.com/wordpress/deep-integrating-wordpress-271-and-bbpress-0904 (which is very helpful for a beginner) and now have bbPress integrated with WordPress.

    What I want to do now is let users upload their own avatar which will appear with their posts/profiles in the forum but also with any comments/profile on the wordpress side.

    There seem to be various standalone avatar plug-ins for wordpress and bbpress but is there anything which is compatible with both systems?

    I’d rather not use Gravatars if at all possible so user’s don’t have to rely or register on an external site.

    Any help, suggestions or pointers would be appreciated.

    #73073
    Ben L.
    Member

    With that code, the last sub forum already has bb-last-child, and if you change <td colspan="3"> to <td colspan="3" class="subsubforum">, subsubforums have a class.

    #73072
    adv_user
    Member

    Yes. But also make the “sub subforuns” appear inside the div “subforum”. Well that original URL did not use div:

    https://bbpress.org/forums/topic/sub-sub-forums#post-11762

    Thanks!

    #73071
    Ben L.
    Member

    I only partially understand the question. Do you want to add a last class to the last forum on the page?

    #73070
    adv_user
    Member

    It is not possible?

    #6631
    Clicknathan
    Participant

    Does anyone know how I might display viewed threads differently from unviewed?

    For example, if I’m a user visiting my forum and I view a thread, maybe the link would then be a different color. I can do this with CSS obviously, but it’d be great if the thread was updated (ie, a new reply posted), that then the thread would change back.

    Any ideas? I’m just looking for an indicator to show people what they’ve read or what’s new.

    #5184
    adv_user
    Member

    In this url:

    http://bbpress.org/forums/topic/sub-sub-forums#post-11762

    works:

    -Forum

    -Subforum

    Subsubforum1, Subsubforum2, Subsubforum 3

    But I need to change the style sheet to show:

    <div id="list">

    <div class="forum">- Forum</div>

    <div class=”subforum”>

    – SubForum

    Make a loop to show Subsubforum in the div SubForum and not below

    <div class=”forum”>Subsubforum1, Subsubforum2, Subsubforum 3</div>

    </div>

    <div class=”subforum”>

    – SubForum

    </div>

    <div class=”subforum last”>

    – SubForum – with LAST class.

    <div class=”forum”>Subsubforum1, Subsubforum2, Subsubforum 3</div>

    </div>

    </div> <!– close id “list” –>

    #72802
    grasn
    Member

    @chrishajer, thanks for the code, this one didn’t work for me, but the one on the page top. You can visit my forum http://deadrising2.de/?page_id=84

    If someone wants to know how i made it, I just removed stuff from the bbpress head.php so it looks like this:

    <body>

    <div id=”main”>

    <?php if ( is_bb_profile() ) profile_menu(); ?>

    and also the first </div> from the footer.php, I also removed the hot tags stuff from frontpage.php. Now I installed embed-iframe plugin for wordpress and modified the iframe.php like this:

    <div class="iframe-wrapper">
    <iframe src="<?php echo $url ?>" frameborder="0" id="youridnamehere" width=100%>Please upgrade your browser</iframe>
    </div>
    <script type="text/javascript">
    function resizeIframe() {
    var height = document.documentElement.clientHeight;
    height -= document.getElementById('youridnamehere').offsetTop;

    <code></code>// not sure how to get this dynamically
    height -= 150; /* whatever you set your body bottom margin/padding to be */

    document.getElementById('youridnamehere').style.height = height +"px";

    };
    document.getElementById('youridnamehere').onload = resizeIframe;
    window.onresize = resizeIframe;
    </script>

    Now I just modified the width of the bbpress style.css for head, main and footer, and also the cols/width of the textarea. I still have a scrollbar if there are more posts on one page, but I can live with.

    Thanks for your help!`

    #72800
    grasn
    Member

    Ok i’m using the embed-iframe plugin to integrate the forum, it looks good. I reduced the width of the forum theme in the css file so it fits the page. The only problem i have, in emped-iframe you can assign a width and height for the iframe. 100% doenst work for height, cause if the forumpage has many threads the iframe becomes a scrollbar on the right side. Any solutions to fix this, and let the iframe automaticly get the height of the forumpage height?

    #73004
    Dave
    Member

    The CSS style and placement of the polls bothers me. I’d really like to see the poll at the top of the actual post, not in the sidebar.

    But as far as function goes, they seem to be working alright. I inputted my vote and it worked fine.

    #72939

    Still got them.

    I’m not a php newbie.

    Not an expert, but in a comfortable place in the middle :D

    I think I’ve pretty much got over all the bugs in the system.

    If anyone wants my style of integration – this is what I did:

    Installed bbPress in root/forums/

    in header.php of forum template put the following before everything else:

    <?php include('../lib/includes/header.php');//Website template ?>

    in header.php of your own website:

    $forumexplode = explode('/', $_SERVER);

    if($forumexplode == "forums")

    {

    bb_feed_head();

    ?>

    #You can also put in here you own, relative path style sheets from the main website.

    <link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />

    <?php if('rtl' == bb_get_option('text_direction')) : ?>

    <link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />

    <?php endif;

    bb_head();

    }

    else

    {

    ?>

    Anything you want to load from normal relative path (if not forums)

    <?php

    }

    ?>

    </head>

    <body id="<?php ($forumexplode == "forums" ? bb_location() : ""); ?>">

    in footer.php of forum template put the following after everything else:

    <?php include('../lib/includes/footer.php');//Website template ?>

    I also prefixed all the forum template’s XHTML id tags with forum_ so they won’t mess with my website’s structure.

    After you’ve done all that, you’re free to style your forum via the css file in the templates directory like you would normally, as well as the structure via the other files.

    And your website, via your own stylesheets.

    Or you can load everything from either stylesheet as long as you remember to load them from their relative path in the header.

    Hope this helps someone ;P

    Peace everyone, hope bbPress will release a version soon which will be easier to integrate.

    Because my system doesn’t really allow for easy user authentication integration on the rest of the website. Can be circumvented via regular user auth integration but that’s more work.

    SMF (Simple Machines Forum) has ssi.php file which you just load into any page and everything is integrated right there and then. Maybe in future versions?

    Me.

    #5145
    guymed
    Member

    Hey guys. Guymed here, sheesh I haven’t been here since, like, early 2008. Tell me if I am posting this in the wrong forum, but, Talkpress? I visited Talkpress.com. It was up, not bbqponysomgomg like it was last year. But, I looked for a sign-up button or a certain page or something. NOT THERE! Is it VIPs only like wordpress.com when that first came up?

    Um, thanks, I guess.

    ~Guymed-

    http://guymed.org/ (AWESOME CSSs BY ME!)

    #72767

    Well on further consideration I looked at the source on this forum and noticed they are placing a random number to the end of the style sheet. Notice what is currently line 5 of the source of this page:

    <link rel=”stylesheet” href=”https://bbpress.org/forum-theme/bborg/style.css?v=2047769217&#8243; type=”text/css” />

    So, I decided the bbpress.org developers had the same difficulties with FF3.0. I tried the same thing myself and I can now log in perfect now, so I guess that is the fix. I would still love to hear from anyone else if they’ve had this issue as well though.

    #4969
    Billy Wilcosky
    Participant

    I hate it when something so easy is giving me problems. I have a link to my search page… mysite.com/myforum/search.php… like that. And it works fine, except the font color on the search form itself is a gray or reddish color and it doesn’t go with my dark blue layout… I need the font to be white. With CSS I’ve got the font set to white everywhere else, even the search results are white, but the form itself is not so you can barely read it.

    I’ve tried editing the color with CSS, regular html, I’ve been in my search.php in my forum root and my search.php in my template, and I’ve been in my search-form.php file, and no matter what I do… I can only get the font to change in firefox… for some reason in ie6, which should be illegal to use, the font it not white.

    I simply added <font color=”white”></font> to the form, and again, it works in firefox, but when I test it with ie6 it doesn’t work. Why?

    I even tried adding a new div… I added <div id=”searchcolor”>search form code here</div> then in my CSS file I have #searchcolor {color:white;}, but even that doesn’t work. Nothing seems to change the form font color in ie6.

    This is frustrating because it’s something SO simple! Font color!

    #4951

    Topic: bb topic view problem

    in forum Plugins
    djeelo
    Member

    Hello all,

    Here is my little problem…

    I’ve well integrated this plugin in my forum (as a new column).

    Everything goes well except the size of the view_count column… It seems to be a not fixed value and it destroy all the front_page structure.

    I’m not so good in css but it should exist a value to modify this to a fixed size …

    here is my forum : http://soab.beachdays.net

    I’m using 9.0.4.

    Thanx a lot for answers.

    And excuse my not so good english.

    Have a nice day !

    djeelo

    #70337
    mac_user
    Member

    Sam,

    I have to say, this was an incredibly useful tutorial on getting the puppy installed with wp 2.7. One item you forgot to include in you video and leaving it out prevented me from completing the install – users will need to grab the $table_prefix value from the config.php file in order to complete the install. This is the wp_ value.

    Other than that, you saved me and countless others valuable time. Thanks again and I look forward to more videos. Now, if there was some way to seamlessly integrate theme into the forums via CSS consistency, that would be great. Hey, maybe there is an easier way than modifying CSS.

    #71940
    chrishajer
    Participant

    Can you check your Apache access log and see what the browser User Agent is, so you can detect that and then craft some CSS specifically for that (or all) browsers?

    This thread covered someone detecting mobile browsers and then serving up a different theme:

    https://bbpress.org/forums/topic/change-theme-if-mobile-browser-detected#post-19618

    #4843
    tfab69fr
    Member

    Hi all

    After upgrading:

    WP2.5 -> 2.7

    BBPress 0.9.4 -> 1.0 alpha 6

    WP is running badly.

    In order to get access to functions of BBPress, I have these lines at the end of wp-config.php:

    if ( !defined('BBDB_NAME') )

    require_once(ABSPATH.'forum/bb-load.php');

    Into the index.php of my WP theme, I wish to display the last topics of the forums, by doing:

    <?php

    $forums = get_forums();

    $topics = get_latest_topics();

    $super_stickies = get_sticky_topics();

    for ($i=0;$i<3;$i++){

    $topic = $topics[$i];

    ?>

    " title="See the message of <?php topic_author();?>"><?php topic_title();

    <?php } ?>

    The display of the latest messages was working well and still working well after the upgrade, BUT WORDPRESS GETS INTO TROUBLE:

    – the css style for the back admin of WP is not working

    – the hooks into the plugins are not called anymore (add_action(‘wp_head’, ‘init_js’); where init_js() is never run)

    – custom query vars are not detected into the url

    Well, when I remove the require_once into the wp-config.php (see below), the trouble disappear.

    //if ( !defined('BBDB_NAME') )

    //require_once(ABSPATH.'forum/bb-load.php');

    How to get it working with the bbpress function without trouble in WP ?

    I think this is a very important point for the BBPress integration in WordPress

    Thanks

    #71834
    bludshot
    Member

    Hmm, I don’t see how to edit my post. Oh well, update: I fixed a lot of the problems by just changing the doctype to 1.1 instead of 1.0.

    Everything looks perfect in FF now. But now my problem is that in IE the menu/header looks a bit off on the forum (vs the blog). At this point it’s more of a strictly CSS question though. I’m thinking maybe I can do a browser check and just load up a different header (or different styles for the divs) tweaked for IE.

    #4827
    bludshot
    Member

    I’m trying to convert the theme “bbpress-forum” to look like my wordpress theme here: http://blueleafcanada.ca/

    I’m having problems getting it to look right. You can see it here: http://blueleafcanada.ca/forums/

    It looks slightly different in FF than in IE. For FF, it has this strange problem where the top left logo is being “crushed down” a couple pixels. Also the 3 menu buttons are being crushed down too. I understand HTML and even have a pretty good understanding of CSS and the box model, but I have no idea what’s causing these problems and I can’t figure out how to fix them.

    Also, the thin side bars have a gap in them under the header, which I’d like them not to have, and I just cannot figure out how to fix it.

    If anyone has any ideas or expertise on this, I’m all ears.

Viewing 25 results - 2,376 through 2,400 (of 2,740 total)
Skip to toolbar