Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 2,176 through 2,200 (of 2,723 total)
  • Author
    Search Results
  • #90961

    Hello.

    Thank you for the fast intervention. I should have thought twice before asking my uneducated questions.

    After a few modifications in my header, I cannot access my forum at all.

    This is what I have in my style.css

    #returntomain-site {
    font-family: Georgia;
    font-style: bold;
    float: left;
    position: right;
    font-weight: bold;
    width: auto;
    font-size: 16px;
    padding: 205px 0px 0px 0px;
    margin: 5px auto 10px 20px;
    }
    #returntomain-site a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    }
    #returntomain-site a:hover { color: #666; text-decoration: underline;}

    This is what I use in header.php, to get my link underneath the header, on the right side, opposite to the login.

    <div id="header" role="banner">
    <?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>
    <div id="returntomain-site"><a>" title="<?php esc_attr_e('Return to main website's home page', ''); ?>" rel="site"> <?php printf( __('%s', ''), 'Go back to The Christian Study' ); ?></a>
    </div><
    </div>

    Now, what I don’t get is why when I simply comment these sections in header and style, the forum is still down, but when I remove them completely, the forum comes up again. In both situations (commented bits vs.removed), I can perfectly well login into my account. There is definitely something wrong with my theme. If only I knew what…

    My forum is here http://www.pastorbob.limewebs.com

    Any advice?

    Thank you.

    Bob

    #34725

    Some time ago I came across markItUp! – a markup editor written as a jQuery plugin. It can be attached to any textarea, providing editing interface to it. The best thing is that it that interface can be totaly customized and there are many sets that are ready to be downloaded, among which is a bbCode set.

    I’ve been using _ck_’s bbCode toolbar plugin but it lacked buttons for adding colors and changing font-size, so I decided to swap it for markItUp. It turned up quite nicely and the code is dead simple. Here it goes:

    First, download markiItUp, along with the necessery bbCode set

    http://markitup.jaysalvat.com/downloads/download.php?id=releases/latest

    http://markitup.jaysalvat.com/downloads/download.php?id=markupsets/bbcode

    http://markitup.jaysalvat.com/downloads/download.php?id=addons/bbcode/colors

    * the color set is seperate by default, so you’d have to merge it to the bbCode set later

    Upload the downloaded files to a directory on your server (my choice was my-plugins/scripts) and include them in your template. You can do that using bb_head in functions.php of the theme (bbPress 1.x) or as a mini plugin (bbPress 0.9.x)

    /*
    Plugin Name: markItUp! for post form
    */
    function mark_it_up_init() {
    echo '
    <!-- markItUp! scripts -->
    <script type="text/javascript" src="' . bb_get_option('uri') . 'my-plugins/scripts/markitup/jquery.markitup.js"></script>
    <script type="text/javascript" src="' . bb_get_option('uri') . 'my-plugins/scripts/markitup/sets/bbcode/set.js"></script>
    <script type="text/javascript" >
    jQuery(document).ready(function() {
    jQuery("#post_content").markItUp(mySettings);
    });
    </script>
    <!-- markItUp! stylesheets -->
    <link rel="stylesheet" type="text/css" href="' . bb_get_option('uri') . 'my-plugins/scripts/markitup/skins/simple/style.css" />
    <link rel="stylesheet" type="text/css" href="' . bb_get_option('uri') . 'my-plugins/scripts/markitup/sets/bbcode/style.css" />';
    }

    add_action('bb_head','mark_it_up_init');

    * Or you could just add that code to your header.php (without the PHP function wrap-up).

    And last but most important – include jQuery before markItUp! in your template. That is best done using <?php bb_enqueue_script('jquery'); ?>

    You can see it in action on the forum that I manage:

    http://comicsbistro.net/forum/?new=1

    Hope that this will be useful to someone :) Cheers!

    #90876

    In reply to: bbPress Plugin is Born

    So bbPress1.0.3 isn’t going to be released? What of 1.1?

    My involvement in the 1.0.x/1.1 branches is limited, but if I had to guess (without checking) 1.0.3 will happen if there’s anything important to push out or there’s some kind of delay with 1.1, and 1.1 will happen before it’s a plugin for sure.

    Who makes these decisions?

    Honestly, whomever is in charge of the project sets the roadmap. If there’s no lead developer, then there’s no release schedule, because everything is just stagnant. I recently said something similar over on the BuddyPress blog regarding activity and how it only serves to perpetually foster more activity. Ultimately, I defer any major decisions about bbPress back to Matt, if anything simply because numero uno through numero un hundred are almost all his. If someone comes along and starts ripping up the trac and contributing patches and just overall making bbPress (the plugin) awesome, and for whatever reason I’m unable to continue to fulfill my responsibility, I’ll kindly step down and let someone else grab the reigns.

    Leadership on an open source project is weird to be honest. The real world doesn’t usually work this way, but I think it’d be better off if it did sometimes. I like to refer to the Ubuntu leadership code of conduct because I think it makes a lot of sense, even if not everything directly relates. Also, leadership isn’t normally even an issue until it feels like there is no leader. If the leader is a total jerk, then chances are the platform would just die because people didn’t like that person. If there’s no leader at all, well… then you just feel abandoned and weird about it, like you should try to help, but don’t know who to ask or what to do. It’s like getting broken up with out of the blue… You’re unprepared and it sucks and you’re sad and bleh… No good.

    1) None of us are worried about the name from a personal view point, it could all could be renamed Bob’s Super Duper Forum for all we care ;-] , only form the perspective of not confusing users.

    Then bbPress it is. :)

    2) How are we going to differentiate this to the current “bbPress Plugin” (we already get quite a few support requests for it)?

    The goal is that no one will have to. If people want bbPress today, they download the current stable version same as always. When the plugin becomes available, it’s up to us to make a great UX that helps existing bbPress users through the update, and makes sure new users aren’t smacked with tons of legacy overhead. BuddyPress was able to get bbPress installed with a 1 click install; our goal should be the same.

    3) How are we going to differentiate this from a “bbPress Plugin” that actually plugs in to bbPress?

    A plugin is a plugin, but there is no such thing as a “plugin dependency” like there is for enqueuing CSS and JS in WordPress. The way we tackled that problem in BuddyPress is similar to what I’d like to do with bbPress, but obviously much lighter and built in from the start.

    4) Are we confident this is crystal clear to those who aren’t native Engligh speakers?

    Since I only speak English, I can’t answer this confidently. I’d like to hope we do a good enough job preparing everyone for this going forward, that anyone that cares enough to contribute does so and stays on top of things.

    I’m not looking to back you into a corner with this bro, but an update on the terminology we should “try” and use so we don’t confuse our already dwingling audience would be real helpful at some stage in the future.

    No worries :) There will be better communication all around going forward to help ease peoples minds.

    I think alot of us can see and understand this. What would be great though, again at some stage, is if we were allowed some visability on what those advantages and disadvantages were (at a high level).

    None of us were involved in nor had any visability of the decision, or conversation even, about bbPress becoming a plugin; so it’s a tad of a shell shock as to how this has come about. You’re a few steps ahead of us because of that, so any resistance you’re feeling isn’t actually against the project or yourself/Pete :)

    bbPress, is always bbPress, and it’s up to the project leaders/managers/grand facilitators to be the guiding light. If that’s Matt, or Automattic, or whomever doesn’t really matter. Again, if it’s a matter of authority, then to me Matt is the authority. But, again, if someone starts ripping through code and contributing tons of patches, there’s plenty of room for advancement if you’re willing to put forth the effort into the core project.

    It would be really great to see the requirement gathering, and weighing up of pros/cons etc. Especially after Jane’s famous https://wordpress.org/news/2009/12/setting-scope/ post about how more standard/practical/tangable/visable methodology would be used for these decisions.

    That would really help us in terms of seeing where things are going; and help us get behind you and Pete on this project :)

    Can’t speak for Jane, and not sure how famous the blog post is, but this is the beginning of that for bbPress. bbPress just has less eyes on it, so it suffers the same way BuddyPress does; passionate userbase, very little action taking place. bbPress development will start gaining speed in the coming days and weeks, and all of those blanks will start getting slowly filled in. If you or anyone else wants to start talking about how to fill those blanks in, start up dedicated topics in the forums so we can sticky them and go over it all.

    You’ve a lot of goodwill from those of us who’ve seen your work and great attitude in these last 2 years mate. Sadly, there’s not alot left in the tank of most folks in regards to bbPress itself after Matt’s “We’ve done this before.” and then bolting for the door.

    From a Project Management viewpoint

    https://bbpress.org/forums/topic/whats-happening-with-bbpress/page/5#post-64410

    This is only compunded by Jane announcing that bbpress would no longer be used for the WordPress forums before telling anyone involved. Not quite as bad as Matt telling people in his KeyNote speech that the community was “rough” and to use “differnt software instead of bbpress”, but not helpful either.

    bbPress will still power the forums, just not as a standalone piece of software anymore once this is ready.

    The trust is gone. But you’re definately the man to regain it :)

    Cheers mate, much appreciated :D

    As an aside, bbPress has always been the forum software for enthusiasts. It’s edgy, and sleek, and when you tell people what software is powering your forums and say “bbPress” you just kind of feel like a bad ass. I think that’s part of where the apprehension to adapt to it being a plugin comes from, because plugins by their general nature aren’t usually trusted to do what they should, the way they should. Also, because bbPress is such a niche project, we’re all used to living on the latest SVN revision, salivating at the prospect of waking up the next day and seeing all the neat new little things that changed since the night before.

    The reality is that most normal people don’t do that, and that’s the person we need to cater to first and foremost.

    bbPress (the plugin) should be considered toxic and unstable until we say go. Not unlike WordPressMU, it was forked out of WordPress, honed, and then merged back in. bbPress (the plugin) is a separate branch of code that does not intersect the existing code in anyway. Once it’s fully refactored and stable, we incorporate all the legacy bits that we need back in with a conditional to not require it if you’re not upgrading, and Bob’s your uncle.

    At least, that’s the plan. :D

    #34704

    Hello.

    I cannot load (not properly) any of the themes from my-templates. I have copied the two themes that came with the installation (changed the names) in my-templates, I can see them (in Appearance) as being in the “user” directory (I don’t get a preview, even though there is a screenshot there), but when I activate them, I only get the content of my pages, without a header, footer etc.

    I have set the permissions (775) for the my-templates folder. I have also set the header and footer images in style.css to their proper destinations (background: #fff url(‘images/header.jpg) no-repeat center; and footer.jpg).

    I am also the key-master, so there shouldn’t be any problems there. What I am trying to do is to make my bbpress theme as similar as possible with that from wordpress.

    This is how the forum looks at the moment: http://pastorbob.limewebs.com/

    Here is my wordpress website: http://www.pastorbob.org/

    Any suggestions are greatly appreciated.

    Bob

    #90434

    In reply to: Theme not working!!!

    shoeyn
    Member

    I’ve just activated iNove

    So this is being called

    &lt;link rel=”stylesheet” href=”http://shoeynet.com/forums/my-templates/inove/style.css&#8221; type=”text/css”&gt;

    But it reports a 404 error not found when trying to get

    #83484
    saraw
    Member

    here’s three shots — one for each directory level, with the “get info” dialog alongside:

    Root Directory (showing bbPress folder permissions):

    http://www.promomachine.com/root-bbpress_info.png

    bbPress Directory (showing my-templates folder permissions):

    http://www.promomachine.com/bbpress-my-templates_info.png

    my-templates Directory (showing promoforums folder permissions):

    http://www.promomachine.com/my-templates-promoforums_info.png

    promoforums Directory (showing style.css file permissions):

    http://www.promomachine.com/promoforums-stylecss_info.png

    #83475
    saraw
    Member

    Yes, that’s how it’s structured:

    my-templates (755)

    –promoforums (755)

    —-style.css (755)

    —-theme .php files (644)

    This was working fine on my local testing server (MAMP); is there any other way to import a custom theme (I’m wondering if something is being garbled during the FTP upload)…?

    #90084
    saare2000
    Member

    thanks for the help. I started by maiking a new theme and almost blank css, but got stuck exactly where I need to modify the front-page.php and couldn’t find anything concrete from Docs.

    seems like instead of

    ?php if ( $topics ) : ?

    there should be something like

    ?php if ( $topics || $category-id ) : ?

    … am I correct?

    #90083

    Thanks, thats really helpful.

    You could definately do this, though it’s not overly easy, it is relatively straightforward.

    You’ve 3 options:

    1) Edit the CSS to attempt to display things the way you want.

    In theory it’s good, in practice it’d be a pain (imo).

    2) Edit the theme file to put categories into their own DIV and then style them into two columns via CSS.

    Probably the easiest without hacking any real PHP.

    3) Write your own query on the database and output hte code exactly as you want it.

    Tricky, mostly as we’ve no documentation or examples, but it’s definately possible if you know your way around PHP (and any cusotm wordpress theming experience would be helpful)

    Basically though, you’ll have to code it and you’re somewhat on your own there, but we can try and help out if you hit a road block.

    #89998

    Eliminating the freshness column is easily done by the method Chris highlights, but it probably won’t have the affect you desire.

    Content is king on the web, regardless of when it was written :)

    Anyway, i piped up because you’ve an error in your CSS. In style.css on line 62 you have the following code:

    #wrapper {

    background:url("images/page_header_tile.png") no-repeat scroll 0 0 #FFFFFF;

    }

    you’ll want to change that to

    #wrapper {

    background:url("images/page_header_tile.png") no-repeat scroll center top #FFFFFF;

    }

    As currently the background image stays the same place while the forums are centered. Basically it looks broken on a bigger monitor, and it’s a quick fix :)

    Good luck with your forum!

    #89664
    driz
    Member

    If I’m not logged in then that code shows 0 but when I visit the profile page of a user the avatar will change to that of the profile I’m viewing.

    If I’m logged in then I get the following mess:

    BP_User Object ( [data] =&gt; stdClass Object ( [ID] =&gt; 1 [user_login] =&gt; cameron [user_pass] =&gt; $P$B1pN/b8ZvQpPDtPILqpJCPqT4M4F0f/ [user_nicename] =&gt; cameron [user_email] =&gt; EMAILREMOVED [user_url] =&gt; http://www.paperviewmagazine.com/members/cameron/ [user_registered] =&gt; 2010-04-16 22:27:31 [user_activation_key] =&gt; [user_status] =&gt; 0 [display_name] =&gt; Cameron [spam] =&gt; 0 [deleted] =&gt; 0 [aim] =&gt; [yim] =&gt; [jabber] =&gt; [use_ssl] =&gt; 0 [nickname] =&gt; Cameron [chat_hide] =&gt; true [mini_track] =&gt; Sat, 12 Jun 2010 04:39:24 -0700 [first_name] =&gt; Cameron [description] =&gt; This is some information about me [admin_color] =&gt; fresh [rich_editing] =&gt; true [primary_blog] =&gt; 2 [last_activity] =&gt; 2010-06-14 14:53:08 [source_domain] =&gt; www.paperviewmagazine.com [pvwp_user_level] =&gt; 10 [bp_latest_update] =&gt; Array ( [id] =&gt; 1 [content] =&gt; Test status message ) [bb_user_settings] =&gt; m0=c&amp;m1=c [pvwp_4_user_level] =&gt; 0 [pvwp_1_user_level] =&gt; 1 [pvbb_capabilities] =&gt; Array ( [keymaster] =&gt; 1 [throttle] =&gt; 1 ) [capabilities] =&gt; Array ( [keymaster] =&gt; 1 [throttle] =&gt; 1 ) [pvwp_7_user_level] =&gt; 0 [pvwp_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [comment_shortcuts] =&gt; false [pvwp_6_user_level] =&gt; 0 [pvwp_5_user_level] =&gt; 0 [pvwp_8_user_level] =&gt; 0 [pvwp_2_user_level] =&gt; 0 [pvwp_3_user_level] =&gt; 0 [pvwp_12_user_level] =&gt; 10 [pvwp_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=c&amp;m10=c&amp;m8=o&amp;m7=c&amp;m1=c&amp;m2=c&amp;editor=tinymce&amp;hidetb=1&amp;m11=c&amp;m3=c&amp;m12=c&amp;m13=c&amp;m4=c [pvwp_13_user_level] =&gt; 10 [pvwp_11_user_level] =&gt; 10 [pvwp_10_user_level] =&gt; 10 [pvwp_1_capabilities] =&gt; Array ( [contributor] =&gt; 1 ) [pvwp_8_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvbb_topics_replied] =&gt; 13 [topics_replied] =&gt; 13 [pvwp_6_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_7_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_3_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_4_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_2_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_5_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [bp_liked_activities] =&gt; Array ( [1] =&gt; activity_liked [3] =&gt; activity_liked ) [pvwp_7_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=c&amp;m10=c&amp;m8=c&amp;m7=c&amp;m1=c&amp;m2=c&amp;editor=tinymce&amp;hidetb=1&amp;m11=c&amp;m3=c&amp;m12=o&amp;m13=c&amp;m4=c [pvwp_11_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_13_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_10_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_12_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_3_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=c&amp;m10=c&amp;m8=o&amp;m7=c&amp;m1=c&amp;m2=c&amp;editor=tinymce&amp;hidetb=1&amp;m11=c&amp;m3=o [pvwp_4_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=o&amp;m10=c&amp;m8=c&amp;m7=c&amp;m1=c&amp;m2=c [pvwp_2_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=c&amp;m10=c&amp;m8=c&amp;m7=c&amp;m1=c&amp;m2=o&amp;editor=tinymce&amp;hidetb=1&amp;m11=c&amp;m3=c&amp;m12=c&amp;m13=c&amp;m4=c [bb_user_settings_time] =&gt; 1276463427 [pvwp_10_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=o&amp;m0=c&amp;m10=c&amp;m8=c&amp;m7=c&amp;m1=c&amp;m2=c&amp;editor=tinymce&amp;hidetb=1&amp;m11=o&amp;m3=o&amp;m12=c [screen_layout_dashboard] =&gt; 1 [metaboxhidden_dashboard] =&gt; Array ( [0] =&gt; dashboard_recent_comments [1] =&gt; dashboard_incoming_links [2] =&gt; dashboard_plugins [3] =&gt; dashboard_quick_press [4] =&gt; dashboard_recent_drafts [5] =&gt; dashboard_primary [6] =&gt; dashboard_secondary ) [metaboxhidden_nav-menus] =&gt; Array ( [0] =&gt; add-post [1] =&gt; add-post_tag ) [pvwp_user-settings-time] =&gt; 1276464114 [nav_menu_recently_edited] =&gt; 3 [meta-box-order_dashboard] =&gt; Array ( [normal] =&gt; dashboard_right_now,dashboard_recent_comments,dashboard_incoming_links,dashboard_plugins,dashboard_quick_press,dashboard_recent_drafts,dashboard_primary,dashboard_secondary [side] =&gt; [column3] =&gt; [column4] =&gt; ) [pvwp_2_user-settings-time] =&gt; 1275215993 [pvwp_7_user-settings-time] =&gt; 1275772159 [pvwp_4_user-settings-time] =&gt; 1271497216 [closedpostboxes_dashboard] =&gt; Array ( ) [pvwp_3_user-settings-time] =&gt; 1275065270 [pvwp_10_user-settings-time] =&gt; 1274906535 [managenav-menuscolumnshidden] =&gt; Array ( [0] =&gt; link-target [1] =&gt; css-classes [2] =&gt; xfn [3] =&gt; description ) [pvwp_dashboard_quick_press_last_post_id] =&gt; 51 [pvwp_7_dashboard_quick_press_last_post_id] =&gt; 6 [pvwp_3_dashboard_quick_press_last_post_id] =&gt; 63 [pvwp_10_dashboard_quick_press_last_post_id] =&gt; 3 ) [ID] =&gt; 1 [id] =&gt; 1 [caps] =&gt; Array ( [keymaster] =&gt; 1 [throttle] =&gt; 1 ) [cap_key] =&gt; pvbb_capabilities [roles] =&gt; Array ( [0] =&gt; keymaster ) [allcaps] =&gt; Array ( [use_keys] =&gt; 1 [administrate] =&gt; 1 [moderate] =&gt; 1 [participate] =&gt; 1 [keep_gate] =&gt; 1 [import_export] =&gt; 1 [recount] =&gt; 1 [manage_options] =&gt; 1 [manage_themes] =&gt; 1 [manage_plugins] =&gt; 1 [edit_users] =&gt; 1 [manage_tags] =&gt; 1 [edit_others_favorites] =&gt; 1 [manage_forums] =&gt; 1 [delete_forums] =&gt; 1 [delete_topics] =&gt; 1 [close_topics] =&gt; 1 [stick_topics] =&gt; 1 [move_topics] =&gt; 1 [view_by_ip] =&gt; 1 [edit_closed] =&gt; 1 [edit_deleted] =&gt; 1 [browse_deleted] =&gt; 1 [edit_others_tags] =&gt; 1 [edit_others_topics] =&gt; 1 [delete_posts] =&gt; 1 [throttle] =&gt; 1 [ignore_edit_lock] =&gt; 1 [edit_others_posts] =&gt; 1 [edit_favorites] =&gt; 1 [edit_tags] =&gt; 1 [edit_topics] =&gt; 1 [edit_posts] =&gt; 1 [edit_profile] =&gt; 1 [write_topics] =&gt; 1 [write_posts] =&gt; 1 [change_password] =&gt; 1 [read] =&gt; 1 [keymaster] =&gt; 1 ) [first_name] =&gt; Cameron [last_name] =&gt; [user_login] =&gt; cameron [user_pass] =&gt; $P$B1pN/b8ZvQpPDtPILqpJCPqT4M4F0f/ [user_nicename] =&gt; cameron [user_email] =&gt; EMAILREMOVED [user_url] =&gt; http://www.paperviewmagazine.com/members/cameron/ [user_registered] =&gt; 2010-04-16 22:27:31 [user_activation_key] =&gt; [user_status] =&gt; 0 [display_name] =&gt; Cameron [spam] =&gt; 0 [deleted] =&gt; 0 [aim] =&gt; [yim] =&gt; [jabber] =&gt; [use_ssl] =&gt; 0 [nickname] =&gt; Cameron [chat_hide] =&gt; true [mini_track] =&gt; Sat, 12 Jun 2010 04:39:24 -0700 [description] =&gt; This is some information about me [admin_color] =&gt; fresh [rich_editing] =&gt; true [primary_blog] =&gt; 2 [last_activity] =&gt; 2010-06-14 14:53:08 [source_domain] =&gt; www.paperviewmagazine.com [pvwp_user_level] =&gt; 10 [bp_latest_update] =&gt; Array ( [id] =&gt; 1 [content] =&gt; Test status message ) [bb_user_settings] =&gt; m0=c&amp;m1=c [pvwp_4_user_level] =&gt; 0 [pvwp_1_user_level] =&gt; 1 [pvbb_capabilities] =&gt; Array ( [keymaster] =&gt; 1 [throttle] =&gt; 1 ) [capabilities] =&gt; Array ( [keymaster] =&gt; 1 [throttle] =&gt; 1 ) [pvwp_7_user_level] =&gt; 0 [pvwp_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [comment_shortcuts] =&gt; false [pvwp_6_user_level] =&gt; 0 [pvwp_5_user_level] =&gt; 0 [pvwp_8_user_level] =&gt; 0 [pvwp_2_user_level] =&gt; 0 [pvwp_3_user_level] =&gt; 0 [pvwp_12_user_level] =&gt; 10 [pvwp_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=c&amp;m10=c&amp;m8=o&amp;m7=c&amp;m1=c&amp;m2=c&amp;editor=tinymce&amp;hidetb=1&amp;m11=c&amp;m3=c&amp;m12=c&amp;m13=c&amp;m4=c [pvwp_13_user_level] =&gt; 10 [pvwp_11_user_level] =&gt; 10 [pvwp_10_user_level] =&gt; 10 [pvwp_1_capabilities] =&gt; Array ( [contributor] =&gt; 1 ) [pvwp_8_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvbb_topics_replied] =&gt; 13 [topics_replied] =&gt; 13 [pvwp_6_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_7_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_3_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_4_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_2_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_5_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [bp_liked_activities] =&gt; Array ( [1] =&gt; activity_liked [3] =&gt; activity_liked ) [pvwp_7_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=c&amp;m10=c&amp;m8=c&amp;m7=c&amp;m1=c&amp;m2=c&amp;editor=tinymce&amp;hidetb=1&amp;m11=c&amp;m3=c&amp;m12=o&amp;m13=c&amp;m4=c [pvwp_11_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_13_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_10_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_12_capabilities] =&gt; Array ( [administrator] =&gt; 1 ) [pvwp_3_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=c&amp;m10=c&amp;m8=o&amp;m7=c&amp;m1=c&amp;m2=c&amp;editor=tinymce&amp;hidetb=1&amp;m11=c&amp;m3=o [pvwp_4_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=o&amp;m10=c&amp;m8=c&amp;m7=c&amp;m1=c&amp;m2=c [pvwp_2_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=c&amp;m0=c&amp;m10=c&amp;m8=c&amp;m7=c&amp;m1=c&amp;m2=o&amp;editor=tinymce&amp;hidetb=1&amp;m11=c&amp;m3=c&amp;m12=c&amp;m13=c&amp;m4=c [bb_user_settings_time] =&gt; 1276463427 [pvwp_10_user-settings] =&gt; m5=c&amp;m6=c&amp;m9=o&amp;m0=c&amp;m10=c&amp;m8=c&amp;m7=c&amp;m1=c&amp;m2=c&amp;editor=tinymce&amp;hidetb=1&amp;m11=o&amp;m3=o&amp;m12=c [screen_layout_dashboard] =&gt; 1 [metaboxhidden_dashboard] =&gt; Array ( [0] =&gt; dashboard_recent_comments [1] =&gt; dashboard_incoming_links [2] =&gt; dashboard_plugins [3] =&gt; dashboard_quick_press [4] =&gt; dashboard_recent_drafts [5] =&gt; dashboard_primary [6] =&gt; dashboard_secondary ) [metaboxhidden_nav-menus] =&gt; Array ( [0] =&gt; add-post [1] =&gt; add-post_tag ) [pvwp_user-settings-time] =&gt; 1276464114 [nav_menu_recently_edited] =&gt; 3 [meta-box-order_dashboard] =&gt; Array ( [normal] =&gt; dashboard_right_now,dashboard_recent_comments,dashboard_incoming_links,dashboard_plugins,dashboard_quick_press,dashboard_recent_drafts,dashboard_primary,dashboard_secondary [side] =&gt; [column3] =&gt; [column4] =&gt; ) [pvwp_2_user-settings-time] =&gt; 1275215993 [pvwp_7_user-settings-time] =&gt; 1275772159 [pvwp_4_user-settings-time] =&gt; 1271497216 [closedpostboxes_dashboard] =&gt; Array ( ) [pvwp_3_user-settings-time] =&gt; 1275065270 [pvwp_10_user-settings-time] =&gt; 1274906535 [managenav-menuscolumnshidden] =&gt; Array ( [0] =&gt; link-target [1] =&gt; css-classes [2] =&gt; xfn [3] =&gt; description ) [pvwp_dashboard_quick_press_last_post_id] =&gt; 51 [pvwp_7_dashboard_quick_press_last_post_id] =&gt; 6 [pvwp_3_dashboard_quick_press_last_post_id] =&gt; 63 [pvwp_10_dashboard_quick_press_last_post_id] =&gt; 3 )

    #89758

    In reply to: Custom Theme

    Don’t worry, that bug’s in backPress not in bbPress – and ChrisHajer and Gautam have submitted a patch.

    In the mean time, load http://btko.webfactional.com/sq36/forums/my-templates/s36/style.css in a browser to see what i mean

    #89757

    In reply to: Custom Theme

    Morning,

    If you try and load your stylesheet directly into a browser you get this error:

    &lt;!DOCTYPE HTML PUBLIC “-//IETF//DTD HTML 2.0//EN”&gt;

    &lt;html&gt;&lt;head&gt;

    &lt;title&gt;403 Forbidden&lt;/title&gt;

    &lt;/head&gt;&lt;body&gt;

    &lt;h1&gt;Forbidden&lt;/h1&gt;

    &lt;p&gt;You don’t have permission to access /sq36/forums/my-templates/s36/style.css

    on this server.&lt;/p&gt;

    &lt;/body&gt;&lt;/html&gt;

    &lt;/blcokquote&gt;

    Looks like you have some permission issues

    #34497

    Topic: Custom Theme

    in forum Themes
    btko
    Member

    Hello,

    I’m starting to modify the Kakumei theme and I’m kind of stuck; I’ve made a new folder in ‘my-templates’ and I copied over the style.css from the Kakumei theme. I plan to use it as a starting point for something more personal.

    But there are is zero CSS being applied now: http://btko.webfactional.com/sq36/forums/

    From reading the Docs I understood it that by just having the style.css bbPress should find all of the other files it needs from the default theme, but it doesn’t seem to be finding anything.

    Any thoughts?

    Regards,

    #89409
    gerikg
    Member

    If you want it like this site…. An easy way to do it is…

    the front page of the default theme is broken into two parts.

    If you open front-page.php serach for these div codes, everything on the left is between “id=”hottags” role=”main””

    Everything on the right is between “div id=”discussions”” JUst move what you want in them.

    All you have to do is adjust the width/margin of both css styles.

    style.css (line 285) #front-page #hottags for the left side change the width

    style.css (line 293) #front-page #discussions change margin left to be 20px more than what you pick for the left column width and the width to fit.

    (Why doesn’t this site have a demo on bbpress! I hate changing my theme back to default to answer questions!)

    I’m afraid thats not got anything to do with bbPress so there’s not a lot we can do to help. Given that the code is output, its probably jsut a styling issue, which really is something you can find out at any of the CSS websites on the interweb.

    Additioanlly, you have paid for theme, so you should probably ask there instead of here, given that your bbPress works :)

    Oh go on then, because I’m being nice…

    Right, if you open up the source of your webpage in a browser, you’ll see some hardcoded (awful idea) CSS into your WordPress page (line 70).

    Just copy that into your bbPress forums, and it too will look the same:

    And really bro, if you pay for a theme and then it doesn’t look like the way you want it, go ask at the forum of where you bought the theme :) WE’re the folks giving up our time for free!!

    gerikg
    Member

    in BaseStationForum/style.css

    add the following.

    .mc_error_msg {

    color:red;

    }

    .mc_success_msg {

    color:green;

    }

    .mc_merge_var {

    margin:0;

    padding:0;

    }

    #mc_signup_form {

    padding:5px;

    width:99%;

    }

    .mc_custom_border_hdr {

    }

    #mc_signup_form {

    float:left;

    padding-top:0.5em;

    }

    #mc_signup_form .mc_var_label, #mc_signup_form .mc_input {

    clear:both;

    float:left;

    margin-left:0.5em;

    margin-top:0.1em;

    }

    #mc_signup_form legend {

    margin:0;

    padding:0.5em;

    }

    #mc-indicates-required {

    clear:both;

    float:left;

    }

    #mc_display_rewards {

    clear:both;

    }

    #mc_interests_header {

    clear:both;

    font-weight:bold;

    margin-left:0.5em;

    padding-top:0.2em;

    }

    div.mc_interest {

    clear:both;

    margin-left:0.5em;

    }

    input.mc_interest {

    clear:left;

    float:left;

    margin-left:0.5em;

    margin-top:0.2em;

    }

    label.mc_interest_label {

    clear:right;

    float:left;

    margin-left:0.3em;

    margin-top:0.2em;

    }

    .mc_signup_submit {

    clear:both;

    padding:0.2em;

    text-align:center;

    width:100%;

    }

    #34421
    Ryan Hellyer
    Participant

    The theme integrator plugin which I mentioned on here a while ago as being “alpha” is now available as a stable release in the WordPress plugins repository. Hopefully some of you find it useful :)

    http://pixopoint.com/products/pixopoint-theme-integrator/

    The system DOES NOT require deep integration and does not suffer the performance hits that deep integration normally applies. This simply copies your HTML markup over after you set a bunch of things in each theme. If you don’t know how to do a 100% perfect integration of your theme already the old fashioned way (copying HTML and CSS across), this new system will not help you at all as you need to set that up already. Once it is setup however, the changes you make in your WordPress theme will be automagically applied to your bbPress site, along with changes such as plugins, widgets etc.

    The system works across a range of different softwares, not just bbPress. You can see a demo of it in my own support forum which uses SMF … http://pixopoint.com/forum/index.php?topic=1385.0

    #89033

    In reply to: OneMoreThing.nl

    I doubt anyone needs to release it as a theme, it’s just a custom front page (although a good one for sure).

    It just loops through Categories / Forums and then outputs the last topic and last post for each forum with it’s gravatar next to it. The code to do it yourself is already in front-page.php

    ( I say that without taking away from the excellent work done by lukepuuk and others on the theme )

    Exit mate, If you want your bbPress to be/act different than all the others, you’ll have to change more than the CSS/Background. But realistically you don’t need much/any plugins to enable your forum to be unique while staying cool and usable :)

    #70627
    nicholaszen
    Member

    Hi,

    I have looked through the whole forum, searching for an answer, how I can add another theme/design/css per forum category.

    And this is the closest topic I could find, but I think you guys were further in your discussions, than I could understand. So is it possible, you explain to a n00b like me, how I can do this?

    Thank you!

    #87798

    Also, i finally upgraded FireBug after notcing how much smaller the text has become again and according to that this is what I’m looking at:

    font-family ‘Lucida Grande’,’Bitstream Vera Sans’,Arial,sans-serif

    font-size 8.4px

    font-style italic

    I don’t know what’s changed (i’ve been away at a wedding since Wednesday night), but “Member” or the role is so incredibly small its unreal. Given that Browsers struggle with decimal points of fonts, we’re looking at 8px text.

    The fact that it’s italic is huge amounts of fun to read too.

    As I pointed out earlier, ‘Lucida Grande’ is a MAC font and ‘Bitstream Vera Sans’ is a Linux font. I wonder if we could check the pages on systems without these fonts because 8px text is honestly a nightmare to read (especially as it’s italic).

    http://www.kevinjohngallagher.com/member_text.png

    Edit: Found the change:

    The 960 layout framework, for some reason, has decided to control the text as well (brilliantly outwith its remit imo). It sets the text size as 12px, and then we set it to 70% on line 76 of “https://bbpress.org/forum-theme/bborg/style.css&#8221;.

    #88871

    Hi Petehd,

    Everything you can find it in the file http://www.homedesignsense.com/forum/bb-templates/kakumei/style.css

    1) You can find in the 683 line of the css file (background-color)

    2) Remove the background-color in the line 109

    3) You can find it in the line 106

    3.1) the sub-title in the line 89

    You can ask me any other cuestions in my forum ;)

    Regards,

    quicoto.

    #34364
    Petehds
    Member

    1. I am making some graphic changes to the Kakumei template. I am somwhat familiar with css but am not sure how to find the one that has the gray bars for “Topics – Add New” and “Main Theme”. I want to change the colors of the bars.

    2. Also; I would like to remove the gray background box for the search bar. Can that be done? I am currently working on the header color in PS. The one that is there now was just a test and the next one will be solid and not gradated.

    3. Where can I find the file to change the “Home Design Sense Interior Decorating & Design” to be able to change it’s color. It will need to be lighter to work with the new color.

    The forum – http://www.homedesignsense.com/forum

    Thanks

    #88448
    chrishajer
    Participant

    The last time I recall hearing about a permissions thing it was on a mac client as well. I remember the screenshot.

    Why is there no style.css shown in the my-templates/businesslike/ directory?

    Also, why is there a businesslike directory INSIDE the businesslike directory? Shouldn’t there just be one level under my-templates?

    What is inside the directory my-templates/businesslike/businesslike/ ? Is that where your theme is? Is style.css present there?

    Where did this header information come from:

    https://bbpress.org/forums/topic/bbpress-102-not-finding-my-templates#post-68683

    #88489
    mzimmers
    Member

    Thanks for the reply, Chris. I’d be only too happy to disregard validation errors, except for two factors:

    1. I’m still relatively new to all this html/css/php stuff, so I do learn from reading the validation reports.

    2. I lean heavily on support from a variety of forums, some of which don’t share your casual attitude toward validation. I try to keep my code “clean” to appease them.

    I looked at the second link you posted above. Does this plugin actually reside in the plugin library? I did a couple of searches and couldn’t find it. Or, do I just cut the code and put it in a file, and upload it as a plugin?

    Thanks again.

Viewing 25 results - 2,176 through 2,200 (of 2,723 total)
Skip to toolbar