<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Topic: Numbered Posts</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: Numbered Posts</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 09:17:59 +0000</pubDate>

<item>
<title>citizenkeith on "Numbered Posts"</title>
<link>http://bbpress.org/forums/topic/numbered-posts#post-6128</link>
<pubDate>Thu, 29 Mar 2007 16:13:47 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">6128@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks... that is indeed where I made the change. :)
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Numbered Posts"</title>
<link>http://bbpress.org/forums/topic/numbered-posts#post-6123</link>
<pubDate>Thu, 29 Mar 2007 15:57:48 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6123@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Better yet, find the entry &#60;code&#62;#thread&#60;/code&#62; in your style.css file and change the &#60;code&#62;list-style&#60;/code&#62; entry there. It makes for nicer code. :)
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Numbered Posts"</title>
<link>http://bbpress.org/forums/topic/numbered-posts#post-6121</link>
<pubDate>Thu, 29 Mar 2007 15:44:29 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6121@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You can in fact replace &#60;em&#62;decimal&#60;/em&#62; with many funky things.&#60;br /&#62;
From &#60;a href=&#34;http://www.w3schools.com/css/css_list.asp&#34;&#62;w3 schools&#60;/a&#62;:&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;none&#60;/li&#62;
&#60;li&#62;disc&#60;/li&#62;
&#60;li&#62;circle&#60;/li&#62;
&#60;li&#62;square&#60;/li&#62;
&#60;li&#62;decimal&#60;/li&#62;
&#60;li&#62;decimal-leading-zero&#60;/li&#62;
&#60;li&#62;lower-roman&#60;/li&#62;
&#60;li&#62;upper-roman&#60;/li&#62;
&#60;li&#62;lower-alpha&#60;/li&#62;
&#60;li&#62;upper-alpha&#60;/li&#62;
&#60;li&#62;lower-greek&#60;/li&#62;
&#60;li&#62;lower-latin&#60;/li&#62;
&#60;li&#62;upper-latin&#60;/li&#62;
&#60;li&#62;hebrew&#60;/li&#62;
&#60;li&#62;armenian&#60;/li&#62;
&#60;li&#62;georgian&#60;/li&#62;
&#60;li&#62;cjk-ideographic&#60;/li&#62;
&#60;li&#62;hiragana&#60;/li&#62;
&#60;li&#62;katakana&#60;/li&#62;
&#60;li&#62;hiragana-iroha&#60;/li&#62;
&#60;li&#62;katakana-iroha&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;Still haven't tried it myself, just about to :P
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "Numbered Posts"</title>
<link>http://bbpress.org/forums/topic/numbered-posts#post-6117</link>
<pubDate>Thu, 29 Mar 2007 14:41:00 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">6117@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I used fel64's CSS solution. Makes perfect sense (smacks his forehead... &#34;Doh!&#34;). Thank you!
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Numbered Posts"</title>
<link>http://bbpress.org/forums/topic/numbered-posts#post-6115</link>
<pubDate>Thu, 29 Mar 2007 12:03:16 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6115@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I believe that if you attach this to your CSS file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;ol#thread li {
list-style-type: decimal;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;you would see the post numbers without any extra code, certainly the most elegant method. There is likely already a definition for ol#thread, so you could simply add this property to that one. Bear in mind that this is entirely untested (will try it when I get home).
&#60;/p&#62;</description>
</item>
<item>
<title>MsHutch on "Numbered Posts"</title>
<link>http://bbpress.org/forums/topic/numbered-posts#post-6110</link>
<pubDate>Thu, 29 Mar 2007 10:58:36 +0000</pubDate>
<dc:creator>MsHutch</dc:creator>
<guid isPermaLink="false">6110@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The &#60;code&#62;post_position&#60;/code&#62; in the &#60;code&#62;bb_post&#60;/code&#62; table has the correct number for each post. I don't know much about php, but I made a little plugin for my forum, which seems to work.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function get_post_num() {
  global $bb_post;
  return$bb_post-&#38;gt;post_position;

function post_num() {
  global $bb_post;
  echo $bb_post-&#38;gt;post_position;
}?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I just place &#60;code&#62;post_num()&#60;/code&#62; where I wanted it to show. Hope this helps?
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Numbered Posts"</title>
<link>http://bbpress.org/forums/topic/numbered-posts#post-6055</link>
<pubDate>Wed, 28 Mar 2007 16:22:27 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6055@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Actually I think it does work. There was something I saw here about the OLs in threads having startnumbers (which didn't validate was the point, I think), implying that you could change the OL styling and possibly display the (in the context of the thread) proper post numbers. I'll look into it, if someone else doesn't already know?
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Numbered Posts"</title>
<link>http://bbpress.org/forums/topic/numbered-posts#post-6036</link>
<pubDate>Wed, 28 Mar 2007 13:20:04 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">6036@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It has post numbers, but they aren't like 1, 2 ,3 etc. Every post (doesn't matter in what part of the forum) get's a number when it is created, so if you want to show these form 1 post you will get someting like:  10, 15, 28 etc (do I make any sence?)&#60;/p&#62;
&#60;p&#62;Perhaps a plugin can add a counter starting at the top post with 1, but you wouldn't be able to link to this post with that nr if you want to do that...
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "Numbered Posts"</title>
<link>http://bbpress.org/forums/topic/numbered-posts#post-6035</link>
<pubDate>Wed, 28 Mar 2007 12:57:03 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">6035@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'd like to have the post number shown for each post. I'm hoping that bbPress already has this functionality, and I would need to do is insert some code into my template. Or do I need a plugin?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
