Search Results for 'forum css'
-
Search Results
-
I like the topic_page_links() that exists in the kakumei theme, but when the number of posts gets too large it stretches out the page.
Are there any arguments for this tag to limit the number of pages it shows?
Here is an example on my forum: http://www.hotforwords.com/forums/
Or is there a way to use CSS to have them line break?
The navigation topic_pages()<s/trong> does a cool thing by breaking up the pages with the … but I can’t get that tag to work properly on the home page.
Thanks!
Marina
You might want to create a static page outside of your bbPress installation that still uses the matching header and footer you have in bbPress. Well it’s very easy.
Make yourself a directory above bbPress with any name you’d like, let’s say “/about/”
In “/about/” make an
index.php
with this content:<?php
require('../forums/bb-load.php'); // change /forums/ to your actual forum path
add_action('bb_head','about_css');
include(bb_get_active_theme_uri()."header.php");
function about_css() { // put any custom CSS you want in here
echo '<style>
img {border:0;}
</style>';
}
?>
<h3 class="bbcrumb"><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a> » About</h3>
<h2>About</h2>
Your "about" text goes here!
<?php include(bb_get_active_theme_uri()."/footer.php"); ?>Topic: Arabic Translation
Hello bbPress Community Members,
This is the Arabic translation for bbPress, I’ve done it 5 months ago with 0.9.0.2
I was a little bit lazy about posting it here, dunno why
Till i checked out this post mintues ago , #thanks _ck_
http://bbpress.org/forums/topic/check-out-this-very-nice-r-t-l-arabic-bbpress
All that i do know that alot of people love it in Arabic and already using the Arabic version of bbPress.
Also, I’ve made a complete RTL version with heavy modifications on template files and a completely new Admin Page Design (CSS Edit).
This is the last version of Arabic Translation for 0.9.0.3 with slight modifications.
Hope that the moderator add this translation officially with other bbPress translations.
Arabic Support Forum: (part of my blog itkallem.com)
Project @ Google Code:
http://code.google.com/p/bbpressar/
Arabic Language Files ar_AR:
http://bbpressar.googlecode.com/files/ar_AR-0.9.0.3.zip
bbPress 0.9.0.3 Arabic Pack only (language files + RTl modifications,..etc)
http://bbpressar.googlecode.com/files/bbpress-arabicpack-0.9.0.3.zip
bbPress 0.9.0.3 Arabic Version (ready to use complete bbPress in Arabic version)
http://bbpressar.googlecode.com/files/bbpress-0.9.0.3-ar.zip
[+] Annoying Problems:
– unicode support for usernames
Thanks.
M.Abdel-Shakour.
At the risk of looking like a double whammy in regards to the non nesting iterations of our outputted code, just using TRs with different classes, i’ve hit across another wee issue – but this time i’m sure there’s a simple solution I just can’t see the relavent code.
I want to be able to know if a forum has children or not, or more specifically when we move up or down a level in the “xPath” iteration.
I’m using a method of using $GLOBALS->forum_parent but what this currently requires me doing is testing to see if the forum has a parent that is not a category, then checking to see if the parent is the same as the previous forums parent, and then output relavent code to nest the forum in an actual parent child format:
Category
– Forum
– Forum
– – Forum
– – Forum
– Forum
This obviously creates havok and rather messy code for the closing of the nestings.
I realise that for small websites this will look like a formatting issue, but once you reach more than 2 levels in a parent child relationship, the ability to control nested relationships makes a huge difference.
Thanks for the help folks
EDIT:
Ok, i think i’ve found half the solution to the issue, and maybe i can phrase the question better now in BBterms…
I want to know, via PHP, before any code has been sent to the browser for the forum, if it is a FIRST CHILD or a LAST CHILD.
Now obviously, BBpress knows this because it’s outputting bb-last-child bb-first-child css, but how can I access these settings on the front-page.php ?
Thanks alot for all the help
Hello everybody – I’m having a formatting issue with bbpress and IE7. You can see an example of what my problem is here –
http://wrvna.org/forum/topic.php?id=9
In FF, naturally, everything works fine, but IE7 puts the username and status underneath/inside/within the topic post. I’m using a stripped down (even further) version of the 1col_fixed
theme.
I’ve searched the forum here and can’t find anyone else with this problem. My fear is that it’s a IE7 CSS problem….
Thanks.