Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 2,451 through 2,475 (of 2,719 total)
  • Author
    Search Results
  • #3833
    RossB
    Member

    When my forum is viewed in Firefox, the long email addresses of users who post are encroaching on their post content. Not a big issue, but a bit untidy and annoying. See: http://ashb.proofreadercentral.com/bbpress/topic.php?id=8

    (user name: tester / password: testing123)

    Which CSS in which file would I modify to make the page width of the forum a bit wider and increase the distance between poster email details and their adjacent post content, please?

    #66853
    chrishajer
    Participant

    Why is this listed as a stylesheet in the source? It gives a 404 then includes the whole WordPress page as a stylesheet:

    <link rel="stylesheet" href="http://www.audioscribbler.co.uk/oldboards/my-templates/bbpress-forum/style2.css?v=8" type="text/css" />

     

    I don’t know if that has anything to do with it, but it’s not right.

    Also, does the problem you’re describing happen with the stock template as well?

    #66729
    jifop
    Member

    hmm, i’ve thrown it back up and its still dead :(

    checking the source it seems ok

    <link rel=”stylesheet” href=”http://www.hlvdubs.co.uk/forum/bb-templates/kakumei/style.css&#8221; type=”text/css”>

    #66728
    chrishajer
    Participant

    Looks like you’re working on it? There is nothing at /forum right now.

    Usually when you have no theme, it’s due to a path problem in your configuration. If you look at the source of a page that is displayed with no style, check the path to the style.css and see if that URL is actually valid and a stylesheet is actually present there.

    If you can’t log in, we need more information. I would start with no permalinks, rather than slugs or true, to be sure that the forum works. Then set up permalinks with your .htaccess file. Start simple and work your way up.

    #66620
    djp
    Member

    Thanks for the feedback Chris. Looks like the footer is inheriting a parent CSS style or something.

    It looks fine on my mac in FF & safari, and it looks fine in IE6 & 7 on a pc.

    Will look into it & repost the url for you to have a squizz.

    Cheers, and thanks again :)

    #3747
    841434
    Inactive

    OK, I’m not sure this is the right place for this but here goes.

    I’ve already set up my site. My home page is a wordpress blog that is integrated with bbpress. The bulk of the site is plain html pages. I find that when I pull a post out of wp and put it in a streamlined html page google does a better job of picking adds that match the content and I get more clicks on advertising. Now the question/problem. I want to keep the comments at the bottom of each post after I’ve moved it over to html. They are still there in bbpress and I can place a link to the forum, but I would much prefer to have the comments visible at the bottom of each post. If this is going to be too much work for someone literate in html, semi-literate in php and illiterate in css, then is there someone that can and will write a hack for it?

    #3726
    RossB
    Member

    I’m using the Kakumei Blue theme. I can’t understand how this could happen, but without my doing anything, overnight the header on my forum has changed when viewed in IE – it remains as it should when using Firefox.

    A navigation button I positioned (by messing with some numbers in some CSS code that Chris kindly provided) has shifted to the right so that it is now too close to the User Name.

    But most strangely, the forum name has shifted so that it now overlaps the “Login” box. This was perfect until now, as you’d expect, since it’s part of the original design – I just typed in the name of the blog in the space provided in Admin.

    Here’s the link, which will make it clear what I’m saying (open with IE): http://ashb.proofreadercentral.com/bbpress/

    User: tester

    Password: testing123

    Can anyone offer any explanation for this stuff? More importantly, how do I get the header back to what it was yesterday given that I haven’t actually changed anything in the meantime? I’m afraid that if I start tampering with the CSS again, I’ll end up messing up the header in Firefox as well!

    Cheers

    #3711

    Topic: Threaded comments

    in forum Plugins
    811536
    Inactive

    I’ve been looking for forum software that meets my needs, and it looks like bbPress is going to be it. One small piece I’m not sure of yet: is it possible through a plugin, or CSS, or something, to support threaded comments? The example sites I’ve looked at so far have all comments at the left margin, and I prefer nested indents to keep track of threads.

    #66346
    Ben L.
    Member

    For #1, you can add the following to your style.css file as near to the bottom as possible:

    #latest th a, #forumlist th a, #favorites th a {
    color: #eee;
    }
    #latest th a:hover, #forumlist th a:hover, #favorites th a:hover {
    color: #eee;
    }

    For #2, I downloaded sv_SE.mo, and it does not have the words “Register or log in:”, “Log in ยป”, or “Remember me”. I don’t know how to edit MO files, so you’ll need to wait for someone who does.

    #66297
    775251
    Inactive

    One other quick note. I just tried to view the default forum stylesheet in my browser, so navigated to:

    http://mysite.com/forums/bb-templates/kakumei/style.css

    And again was redirected to my blog’s homepage. I’m confused as to why this is happening?

    #66296
    775251
    Inactive

    @ sambauers: Ok — good to know :)

    So I’ve moved the bbpress files over to

    http://mysite.com/forums

    And now things seem to look better. I can see the admin page for bbpress.

    However, now it seems that a link to the forum stylesheet is broken. When I look at http://mysite.com/forms, I see the forum homepage, but with no CSS styling. Then, when I click on to view a forum topic, like http://mysite.com/forums/topic/test-topic, I seem to get redirected to my blog’s homepage. I’m confused!

    Sorry for all the novice questions! Your help is much appreciated.

    chrishajer
    Participant

    Adding that line only allows you access to WordPress functions from within bbPress, it has nothing to do with making your forum look like your blog. For that, you will need to do some CSS and template work: none of it is automatic.

    Tranny
    Participant

    Yes, I had the layout of forums customized before upgrade to WP2.5 becasue defaul is very user not friendly. I also had title tag customized because default values are not SEO friendly. Obviously, this clashes with upgraded version causing my forums page to not work. This is what HEAD of my header.php looks like

    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

    <title>
    <?php if (is_front()) { ?> Forums and Forum Topic on Bullshit Blog <?php }
    elseif (is_forum()) { echo (get_forum_name() . " on Bullshit Blog Forums"); }
    elseif (is_topic()) { echo (get_topic_title() . " Forum Thread on Bullshit Blog"); }
    else {
    ?>

    <?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> &raquo; <?php bb_title() ?>

    <?php } //else ?>
    </title>
    <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->

    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" media="screen" />

    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

    <style type="text/css" media="screen">

    <?php
    // Checks to see whether it needs a sidebar or not
    if ( !$withcomments && !is_single() ) {
    ?>
    #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; }
    <?php } else { // No sidebar ?>
    #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; }
    <?php } ?>

    </style>

    <?php wp_head(); ?>

    <?php if ( is_topic() && bb_is_user_logged_in() ) : ?>
    <script type="text/javascript">
    var lastMod = <?php topic_time( 'timestamp' ); ?>;
    var page = <?php global $page; echo $page; ?>;
    var currentUserId = <?php bb_current_user_info( 'id' ); ?>;
    var topicId = <?php topic_id(); ?>;
    var uriBase = '<?php bb_option('uri'); ?>';
    var tagLinkBase = '<?php bb_tag_link_base(); ?>';
    var favoritesLink = '<?php favorites_link(); ?>';
    var isFav = <?php if ( false === $is_fav = is_user_favorite( bb_get_current_user_info( 'id' ) ) ) echo "'no'"; else echo $is_fav; ?>;
    </script>
    <?php bb_enqueue_script('topic'); ?>
    <?php endif; ?>

    </head>

    There’s obviously a lot of dynamic stuff in the head of my theme to make it mor SEO friendly. Is there a way to retain it and have it properly pull required data again?

    Thanks for your help guys, I really appreciate that :)

    #65458
    chrishajer
    Participant

    Always, always always validate first when you’re troubleshooting layout issues:

    HTML

    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.undercoverlawyer.com%2Fforum%2F

    CSS

    http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.undercoverlawyer.com%2Fforum%2F&profile=css21&usermedium=all&warning=1&lang=en

    Fix issues that are described there. Some, like missing alt tags, are not going to have an impact on layout. I have found layout problems are almost always due to a div being closed to early or not at all.

    Thanks everyone for the discussion and tips – this is my first time using the bbPress forum and I have a good feeling about it!

    I’ve been playing around with various suggested techniques to achieve what I want. It seems as though there are quite a few methods bouncing around the forums – unfortunately none have worked for me. Interestingly enough, none of them mention the ‘my-templates’ rule.

    I’ve decided to make my life simpler and just hound you guys until I get it done as you seem to know what your doing! So, going with Sam’s suggestion to create my own them I have…

    Set-up locally (in a folder called ‘my-templates’ a bare bones theme – consisting of a css file, a header file and a footer file. My only goal is for my WP header and footer to sandwich the forum.

    Where do I go from here?

    Okay, I have to get this out of my system. But first…

    I have three websites with WP. I love it. I love you all. I’m not throwing a tantrum or threatening to run off and elope with Movable Type or Joomla!.

    But, here is my issue…

    I want to add bbPress to one of my sites and quite possibly another that I just started.

    I know there are other forum software out there but really want this to stay in the family.

    My problem is that fresh out of the box bbPress looks like a manual for a cold war Soviet submarine.

    Getting past that I tried to integrate my WP header into my bbPress installation but the info available on integration is either outdated or above my ability. I integrated the WP header into my gallery software (Zenphoto) with no problem at all, so it doesn’t make sense to me that integration bbPress should be harder.

    Also, the forum on WordPress.org looks so good that using it is just rubbing salt in my wounds. It is as though WP is saying ‘here is what you could do with bbPress if you had a team of developers and an unlimited budget, but since you are poor and working alone… you’re out of luck!’.

    Okay, I’m done ranting.

    Does anyone have experience adding their WP header and footer into bbPress? I would prefer to not integrate the databases. All I really want is for the header and footer to be consistent throughout the site. I can handle the CSS part of it.

    Thanks!!!

    #65211
    Detective
    Member

    I edited the header of my forum, trying to match the design of the WordPress theme, and then loaded the same CSS file from it. It’s the best way i think.

    #3418
    Detective
    Member

    Foros Ryuuko

    I use a custom theme (heavily a modified Kakumei) and some custom plugins. The forum is new, so it doesn’t have activity, all our users are still using the Vanilla forum we had.

    I didn’t hack any core files, all “non standard things” are donde via custom plugins.

    Plugins i use:

    – My own “Ajustes” (for sidebar, footer and navigation menu content, profile content, and some html tags).

    – MD5 Insecurity (will be deactivated soon).

    – Private Messaging Extended

    – A custom Quicktags (ported from Vanilla)

    – Ajaxed Quote

    – Simple Online List (i also modified a lot this plugin, because it never worked for me ….).

    – Unread Topics. I also modified this one, it was doing too many queries. I added some indices and reduced the overhead.

    – User Photo. I ported the User Photo WP plugin.

    – Human Test.

    Also i indirectly use:

    – Gaming Codes: each user can enter his gaming codes. They’re displayed on the user profile.

    Aleph: this plugin creates user lists (among other things). So i use it inside WP like a “member list”. The beauty is that i can easily create different user lists, so i created a list for each gaming code (in other words, users can see which users have a certain gamer code).

    As i said, the theme is a heavily modified Kakumei. I replaced all topics/forum loops with my own, trying to mimick the Vanilla look. Also the css is based on the Tarski theme for WordPress. In fact, i import it directly from the WP installation.

    For the forum/topic icons, i created a custom plugin which printed the css based on the slug of each forum, and then i added the resulting code to the style.css. I still have to create a lot of icons, those are temporary.

    I hope you like my forums and if you have any questions or would like a plugin/theme release, just ask :p

    elorgwhee
    Member

    Hello!

    I searched through the forums and wasn’t able to find anything quite like what I’m getting, so I figured I’d post.

    I just did a fresh install of the latest versions of wordpress and bbpress over the past few days. I installed and tested several plugins for wordpress and started doing some minor css updates, and exported/imported my blog posts from my old server to the new server – but haven’t done much with bbpress except to integrate with wordpress.

    I have PHP 5.2.5, MySQL 4.1.22, and Linux on a shared server. Everything’s on the same domain (well, an IP address until I get things situated on my new server) and there are no subdomains involved. WordPress uses the root www folder, and bbress uses www/forum/. WordPress and bbpress have separate databases, but all the secret keys, etc. are all setup to match and everything is configured per the install instructions.

    It took several attempts to get bbpress installed because it was giving me an database error at the last step stating that I may need to do a fresh install – even though it *was* a fresh install. After several attempts, I decided to try it without the wordpress integration, and that seemed to do the trick. I had assumed that everything was ok after that and it was just a minor hiccup during the installation…?

    All that said…

    – Login/logout works for each user so far.

    – Registration works.

    – When I’m signed in as “Admin” I can get to the Admin panel.

    However:

    – when I try to view the “Admin” account profile, I get a wordpress 404 at www/forum/profile/admin.

    – Clicking on any topics or forums (I believe I created them before the integration?) even a view of topics with no replies I get the same 404.

    – On the other hand, when logged in as my other user account “elorg” and trying to view that account’s profile page, it redirects me to a wordpress blog entry… that happens to have “elorg” as the first few characters in the subject…?

    – And… When creating a new thread titled “test” as my “Admin” account – I was able to post it, but was redirected to… a wordpress entry who’s subject starts with “test” as the first few characters…? That can’t be a coincidence, right? So…

    – I logged in as my “elorg” account for good measure, and created a new thread with a one word subject that I know I have a blog post

    – When going back to the forum and attempting to open any of the new threads, it forwards me to the same journal entries as it did when I tried to create the threads.

    Any ideas? At this point, I might just try to start from scratch and see what happens…

    #3381

    Topic: Dummies Guide

    in forum Themes
    willyhoops
    Member

    I have just installed this and I am an amateur if not total dummy at htlm, php and css. Is this a Pro Product or do you expect home users to use it as well? To use this I need to: (a) remove the “hot tags” section on the left. (b) Remove the Forums section. (c) Remove the Views Section. Sitting here staring the the php and the css is crazy. Where is the dummies guide that says how to do these simple things? Also this thing has no search on it which makes no sense. I can handle that with a google site search box on there but where is the code/theme for this please? Many Thanks…

    Oh man forget it it’s crashing now at: http://willyhoops.com/bbpress/. Click on anything and it says topic not found. I am totally lost

    #65001
    bobbyh
    Member

    Yeah, assuming the themes have consistent HTML, in the header, put something like this:

    <link rel="stylesheet" href="<?php if ($forum_id == 1) bb_stylesheet_uri(); elseif ($forum_id == 2) echo '/my-templates/kakumei-blue/style.css'; ?>" type="text/css" />

    I didn’t test this, but I think that code should work.

    #64627
    monstr
    Member

    haha jehaw, this rocks! :) thank you

    is there a option that lets you disable the thingy for the topics? i’m using the other plugin flying around here, because i want the topics to be also indicated when you have not posted to them before…

    e: okay, i did this in css now, by simply giving the forums a different class and excluding the style for the topics. well i think there is a better solution somehow :D

    e: the coolest solution would be your plugin having a setting wich you can activate so that the topics & forums are also marked if you didn’t post to them before. perhaps you could do this :)

    thank you alot for this so far. i really was praying someone would do this :)

    #64626
    _ck_
    Participant

    Okay version 0.8.7 of this can now indicate forums with new posts:

    https://bbpress.org/plugins/topic/unread-posts/

    You will have to change the optional setting to true near the top of the plugin.

    It defaults to highlighting the title in blue but you can also change the css to append an icon, etc. instead.

    #64513
    _ck_
    Participant

    The newest 0.9 kakumei theme has a fix for post-author-info overflow that I think you are referring too. I posted an alternate hack around here somewhere…

    Here you go:

    https://bbpress.org/forums/topic/heres-a-trick-to-fix-kakumei-author-info-overflow

    #64527
    chrishajer
    Participant

    This happened not too long ago as well (can’t find the post right now), I suspect they’re working on something. I noticed the forum CSS here is different today as well. I’m sure it will be fixed shortly.

Viewing 25 results - 2,451 through 2,475 (of 2,719 total)
Skip to toolbar