<?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 Tag: multiple categories</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: multiple categories</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 02:55:37 +0000</pubDate>

<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/3#post-13463</link>
<pubDate>Tue, 29 Jan 2008 14:40:50 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">13463@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's working great.  Thanks for everything Chris.  I'd be using a plugin if it wasn't for you.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/3#post-13457</link>
<pubDate>Mon, 28 Jan 2008 23:45:38 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13457@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You can remove a whole div, no problem.  If it still validates, then it's fine.  If it looks good, then it's fine.  Sounds like it's working fine...
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/3#post-13449</link>
<pubDate>Mon, 28 Jan 2008 15:12:21 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">13449@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Chris,&#60;/p&#62;
&#60;p&#62;I owe you a huge apology...I wasted your time.&#60;/p&#62;
&#60;p&#62;So, after trying all the various combinations you suggested, I remembered that when I first tried you original suggestion:&#60;br /&#62;
&#38;lt;table class=&#34;forumlist&#34; id=&#34;forumlist-&#38;lt;?php forum_id(); ?&#38;gt;&#34;&#38;gt;&#60;br /&#62;
that I had put it on two lines.  So, the &#34;id&#34; line started with a black (rather than light green) &#34;id.&#34;  I thought, &#34;Oh, that needs to be green,&#34; so I went ahead and added &#38;lt; to begin the line.&#60;/p&#62;
&#60;p&#62;Obviously I'm learning this stuff as I go.  Anyway, I went back, used you original method all on one line without adding the extra &#38;lt; and, guess what?  It all validated.&#60;/p&#62;
&#60;p&#62;I'm an idiot.  Sorry for waisting your time and thanks for making it work.&#60;/p&#62;
&#60;p&#62;Oh, also, I didn't want the &#34;Hot Tags&#34; so I justed cut that entire Div out.  Everything still seems to work and still validates, but I worry that I shouldn't have done that.  What do you think?&#60;/p&#62;
&#60;p&#62;I signed up for adsense and I'm thinking of putting ad code where hot tags was
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-13446</link>
<pubDate>Mon, 28 Jan 2008 07:14:03 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">13446@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Chris,&#60;/p&#62;
&#60;p&#62;Thanks for answering.  If you're still up, well, I have to go to bed.  But, I'll try it again in the morning and let you know how it goes.&#60;/p&#62;
&#60;p&#62;Thanks again
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-13445</link>
<pubDate>Mon, 28 Jan 2008 06:05:55 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13445@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I' m not sure, but I think the id needs to come before the class.  Did you try your one example with the id first, then the class?&#60;/p&#62;
&#60;p&#62;I've always seen them in that order (id first) but I'm not sure if that's required or not.  What was the error exactly?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-13444</link>
<pubDate>Mon, 28 Jan 2008 06:00:51 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13444@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There is a difference between id and class.  Maybe you're using one or the other.&#60;/p&#62;
&#60;p&#62;This is a class:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.forumlist {
font: whatever;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This is an id:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#forumlist {
font: whatever;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You're using &#60;code&#62;&#38;lt;table id=&#38;quot;forumlist-1&#38;quot;&#38;gt;&#60;/code&#62; but your css doesn't contain markup for that (it has forumlist, not forumlist-anything.  There is markup for #forumlist, but without numbers.  Maybe you could do something like &#60;code&#62;&#38;lt;table id=&#38;quot;1&#38;quot; class=&#38;quot;forumlist&#38;quot;&#38;gt;&#60;/code&#62;  or something?  That way, the forumlist class doesn't need to be unique, since each city will sort of look the same, and the id is unique to each city.  You still need to add the proper tags in your CSS,  &#60;a href=&#34;http://trac.bbpress.org/ticket/1&#34;&#62;#1&#60;/a&#62;, &#60;a href=&#34;http://trac.bbpress.org/ticket/2&#34;&#62;#2&#60;/a&#62;, &#60;a href=&#34;http://trac.bbpress.org/ticket/3&#34;&#62;#3&#60;/a&#62; for the ids and .forumlist (which is already there I believe.)&#60;/p&#62;
&#60;p&#62;Hope this advice is accurate.  Let us know if it works.
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-13443</link>
<pubDate>Mon, 28 Jan 2008 03:58:24 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">13443@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Chris...still around?&#60;/p&#62;
&#60;p&#62;I'm continuing this thread because so much on the info is here.&#60;/p&#62;
&#60;p&#62;I've been trying to validate my html and css by trying the various methods listed above.&#60;/p&#62;
&#60;p&#62;This didn't validate &#38;lt;table class=&#34;forumlist&#34; id=&#34;forumlist-&#38;lt;?php forum_id(); ?&#38;gt;&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;But, this did &#38;lt;table id=&#34;forumlist-&#38;lt;?php forum_id(); ?&#38;gt;&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;Both the html and the css are perfect with the last one, but I lost some of my styling, namely the colors.  Any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-13383</link>
<pubDate>Fri, 25 Jan 2008 19:36:54 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">13383@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey All,&#60;/p&#62;
&#60;p&#62;I've been away for a while...I got an assignment so I had to put my site on hold.  But, I'm back.&#60;/p&#62;
&#60;p&#62;I'm only writing today because I really wanted to thank a few people for their help.  I would never have gotten as far as I have with my forums if not for them.&#60;/p&#62;
&#60;p&#62;So...fel64, livibetter and, especially Chrishajer, thank you all for your help.  Since starting this whole WP and bbPress venture, I've constantly been surprised and impressed with just how generous people in this community are with their time and their knowledge.  &#60;/p&#62;
&#60;p&#62;Thanks again...I'm sure I'll be hitting you up again soon.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12421</link>
<pubDate>Tue, 04 Dec 2007 06:34:02 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12421@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm not sure which version of front-page.php you're using (couldn't make my site look like yours using the last front-page.php code that was posted) but I THINK all you need to do is change the line that looks like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;table id=&#38;quot;forumlist&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
to this:&#60;br /&#62;
&#60;code&#62;&#38;lt;table id=&#38;quot;forumlist-&#38;lt;?php forum_id(); ?&#38;gt;&#38;quot;&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That just adds a dash and the forum number to the table id.  That should validate.  But I think that will affect the CSS in a bad way.  There will no longer be an id of &#34;forumlist&#34;, they'll all be &#34;forumlist-something&#34; which the CSS will have trouble with.&#60;/p&#62;
&#60;p&#62;Maybe it would be better to do something like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;table class=&#38;quot;forumlist&#38;quot; id=&#38;quot;forumlist-&#38;lt;?php forum_id(); ?&#38;gt;&#38;quot;&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Then you would need to change your style.css to make any references to #forumlist look like .forumlist (change from applying the forumlist styling to &#60;strong&#62;ids&#60;/strong&#62; and make it apply to &#60;strong&#62;classes&#60;/strong&#62;.)&#60;/p&#62;
&#60;p&#62;That's a lot of work, but ids are supposed to be unique on a page, where classes are not.  This is actually a better application of a class since all the tables should look the same and use the same styling.  You're not referencing them with javascript or something where the ids matter.&#60;/p&#62;
&#60;p&#62;I just tried this and it worked on mine and validated properly.  There were 6 instances of #forumlist that needed to be changed to .forumlist in my style.css&#60;/p&#62;
&#60;p&#62;Hopefully that will work for you.
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12415</link>
<pubDate>Mon, 03 Dec 2007 05:05:05 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12415@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Guys,&#60;br /&#62;
Chris, sorry I didn't answer sooner, I had to work this weekend and I also had to deal with a WP issue.&#60;/p&#62;
&#60;p&#62;First, I'd again like to thank all of you who helped me.  Especially Chris and livibetter.&#60;/p&#62;
&#60;p&#62;Second, to answer your question Chris, no I haven't fixed the table ID issue yet.  I see what you mean and when I try to validate at W3Schools it says exactly what you said.  Problem is I'm still trying to find where in my files to change the ID's.  Basic question I know, but I've looked at everything I think might apply.  Ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12325</link>
<pubDate>Wed, 28 Nov 2007 14:06:25 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12325@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I hope so - now go get some members!&#60;/p&#62;
&#60;p&#62;Where you going to fix the ids to make them unique for each city table?
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12319</link>
<pubDate>Wed, 28 Nov 2007 05:34:32 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12319@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;So? I think I'm done for now, right?
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12313</link>
<pubDate>Tue, 27 Nov 2007 22:37:07 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12313@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yes, remember I was going to try to have a list of the cities so people could just click on say &#34;Miami&#34; and then be taken directly to the &#34;Miami&#34; part of the page?  Well, livibetter's code created a list of all the cities and took them directly to the sub-forum for each city.  If I create a link on the main WP Page for the Chicago board using an address like &#60;a href=&#34;http://theangrywaiter.com/forum/forum.php?id=2&#34; rel=&#34;nofollow&#34;&#62;http://theangrywaiter.com/forum/forum.php?id=2&#60;/a&#62;&#60;br /&#62;
it also takes them directly to the sub-forum.  I didn't really like that, so I figure I'll just offer one link from the main WP site to the forums and let the visitor scroll past the other cities until they find their's.&#60;br /&#62;
It might actually be better because then they can see the other cities and more easily go and read posts in those cities as well as in their own city.&#60;/p&#62;
&#60;p&#62;Oh, and if they go to a sub-forum they can enter a post outside of the child forums.  I tried to comment that comment form out, but it took them out of all the forums as well.  So, now I think it was all a waist of time, but at least I learned something.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12312</link>
<pubDate>Tue, 27 Nov 2007 22:27:42 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12312@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;table ids, yes, the code from livibetter would need a tiny modification to create unique ids for each table.  :)&#60;/p&#62;
&#60;p&#62;And for the anchoring, do you mean something like a list up top on the page, then each of those link further down the page to a named anchor?  Like this?&#60;br /&#62;
&#60;a href=&#34;http://www.vestacompanies.com/properties/&#34; rel=&#34;nofollow&#34;&#62;http://www.vestacompanies.com/properties/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;(click a for sale or for rent category and it just scrolls down the page a little bit to the proper table)
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12305</link>
<pubDate>Tue, 27 Nov 2007 21:36:04 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12305@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I changed the title to alt=&#60;br /&#62;
As far as the table ids...are you talking about the code I got from Livibetter?&#60;br /&#62;
And about anchoring each forum?&#60;br /&#62;
After all that work (by you guys, not so much me) I took that out and decided to just let people scroll down the page.  I just think the page looks better and I kind of like that they can see all the other cities.&#60;br /&#62;
I know, I'm a pain in the ass.&#60;br /&#62;
So, on the front-page.php and the forum.php I see nothing like that anymore, but if I right-click page source when at the actual forums page I see what you mean.&#60;/p&#62;
&#60;p&#62;Edit:  I see what you mean too when I run it through a valadator
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12303</link>
<pubDate>Tue, 27 Nov 2007 21:07:15 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12303@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Only 47 posts?  Piece of cake.&#60;/p&#62;
&#60;p&#62;I did notice, in Firefox 2.0.0.10 the logo is not entirely clickable.  Certain parts of it are, if you hit it just right, but not the whole thing.  Odd.  In IE7, it's all clickable.&#60;/p&#62;
&#60;p&#62;Oh, and I probably told you this incorrectly as well (although not intentionally.)  The &#60;code&#62;&#38;lt;a href&#60;/code&#62; should have a &#38;lt;strong&#38;gt;title attribute, not an alt attribute.  The &#60;code&#62;&#38;lt;img&#60;/code&#62; should have an &#60;strong&#62;alt&#60;/strong&#62;.  So&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;a href=&#38;quot;http://www.theangrywaiter.com/&#38;quot; title=&#38;quot;go home&#38;quot;&#38;gt;&#60;/code&#62; and&#60;br /&#62;
&#60;code&#62;&#38;lt;img src=&#38;quot;http://www.theangrywaiter.com/forum/bb-templates/awbbtheme/images/awforumlogo3.jpg&#38;quot; alt=&#38;quot;the angry waiter logo&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Sorry about that.&#60;/p&#62;
&#60;p&#62;And, to keep your page valid XHTML, you're going to have to give each forumlist a different ID by appending the name or number of the forum to it.  So it would be&#60;br /&#62;
&#60;code&#62;&#38;lt;table id=&#38;quot;forumlist-chicago&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
and &#60;code&#62;&#38;lt;table id=&#38;quot;forumlist-atlanta&#38;quot;&#38;gt;&#60;/code&#62; &#60;/p&#62;
&#60;p&#62;or &#60;code&#62;&#38;lt;table id=&#38;quot;forumlist-4&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
and&#60;code&#62;&#38;lt;table id=&#38;quot;forumlist-11&#38;quot;&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12301</link>
<pubDate>Tue, 27 Nov 2007 20:48:57 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12301@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;47 posts later and I think I'm done!&#60;br /&#62;
Check it out and let me know what you think
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12297</link>
<pubDate>Tue, 27 Nov 2007 19:19:15 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12297@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yes!  It works!&#60;br /&#62;
I was having trouble in IE (it worked fine in Firefox).  Now, after removing img id, it works in both.&#60;br /&#62;
Thanks.&#60;br /&#62;
I think, though, I might make a slightly smaller logo/click here so it fits better into the header.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12296</link>
<pubDate>Tue, 27 Nov 2007 19:00:41 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12296@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This needs to be removed.  It's right after the header div in header.php&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;img id=&#38;quot;headerlogo&#38;quot;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That is doing you no good.  Actually, my message was a combination of a couple messages.  Initially I was going to say give the image an id so you could position it, then I said to just style it with &#60;code&#62;#header img&#60;/code&#62; - in any case, you need to remove the above since it's not valid and is causing weird things.&#60;/p&#62;
&#60;p&#62;And you must be working on it since there is no border.
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12295</link>
<pubDate>Tue, 27 Nov 2007 18:12:23 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12295@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;so now I changed style sheet put floated the image right and it's postioned fine, but there's a bortder around it.&#60;br /&#62;
I think I should replace that image with a smaller one&#60;/p&#62;
&#60;p&#62;Edit:  Ok, I think it's related to what you said before about the image being too large.  I kind of blew that off because I was using a different image.  The new one is 280x100.  I think what I'm going to do is make a smaller image, upload that and change the header.php ing src.&#60;br /&#62;
Then, try to hide the border.
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12294</link>
<pubDate>Tue, 27 Nov 2007 17:54:28 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12294@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The whole header is clickable now...could this be because I positioned it with padding?
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12293</link>
<pubDate>Tue, 27 Nov 2007 17:52:40 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12293@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;OK...I have it positioned and clickable, but somehow I've made the entire banner clickable and added a border.&#60;br /&#62;
To position the logo/Click here I added a left-padding in the style sheet.&#60;br /&#62;
I also had to add change the header php from src= to img src= to get the logo to display after I added href.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12289</link>
<pubDate>Tue, 27 Nov 2007 15:27:46 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12289@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;In header.php, in the header div (where the login_form() is) put this:&#60;br /&#62;
&#38;lt;img id=&#34;headerlogo&#34; src=&#34;http://www.theangrywaiter.com/wordpress/wp-content/uploads/awbanner.jpg&#34; alt=&#34;The Angry Waiter&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;Right now though, the image is taller than the header div (the header is 106px, the image is 131px, I think.)&#60;/p&#62;
&#60;p&#62;So, to make it all work, you'll need to make the header div taller, or the image less tall.  Then you'll need to apply some styling to the image you just placed in the header.  Something like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#header img {
whatever: here;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That just gets the image into the header.  Then you need to wrap an &#60;code&#62;&#38;lt;a href=&#38;quot;http://www.theangrywaiter.com/&#38;quot; alt=&#38;quot;go home&#38;quot;&#38;gt;&#38;lt;/a&#38;gt;&#60;/code&#62; around that image tag you just added, to link the image to the destination.
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12286</link>
<pubDate>Tue, 27 Nov 2007 07:45:27 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12286@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I was able to move the forum Title up and to the center just by adding some padding.  I think it looks good there.&#60;br /&#62;
I removed the logo from the background in the style sheet.&#60;br /&#62;
Now, I've been trying to add the image to the header.php, but I don't know how to do it.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12285</link>
<pubDate>Tue, 27 Nov 2007 06:15:42 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12285@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Integration doesn't matter at all if you're just linking one to the other, they're just simple html links.  You can link anything to anywhere, no integration required.&#60;/p&#62;
&#60;p&#62;Not sure what you mean about &#34;on top of&#34; - the new logo is a background image over to the bottom/right of the header div.  The problem with making it a background image, rather than just an image in your code, is that to make it clickable back to the main site, you'd have to make the whole header a link back to the main site.  If you look at the source for the page, you'll see there is no img tag for awforumlogo2.jpg that you can wrap in an &#60;code&#62;&#38;lt;a href=&#38;quot;&#60;/code&#62; tag to link back to the main site.  I don't think you want that image as a background image for the header if you're going to make a link out of it.&#60;/p&#62;
&#60;p&#62;I would remove the background image from your style.css and put the img tag in header.php somewhere in the &#60;code&#62;&#38;lt;div id=&#38;quot;header&#38;quot;&#38;gt;&#60;/code&#62; section (around line 34 in a stock installation).&#60;/p&#62;
&#60;p&#62;Once you have an image in header.php, you can work on positioning it where you want it and linking it to what you want as well.  Then you can figure out where you want your forum title as well.
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12278</link>
<pubDate>Tue, 27 Nov 2007 00:30:15 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12278@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok, so I now know how to link the individual cities.  I can use Livibetter's new code and do it from the front page of the forum or I can do it from the Forum Page on our main site.  Thanks to both of you...I'm really learning a lot!&#60;/p&#62;
&#60;p&#62;So, now I've added the logo with a &#34;Click Here&#34; statement to direct people back to the main site.  As you can see &#60;a href=&#34;http://www.theangrywaiter.com/forum&#34; rel=&#34;nofollow&#34;&#62;www.theangrywaiter.com/forum&#60;/a&#62;&#60;br /&#62;
it sits on top of the title.&#60;br /&#62;
I was thinking maybe I could move the title up higher and center it.&#60;br /&#62;
Don't know how to do this.&#60;br /&#62;
Then I could make the logo and &#34;Click Here&#34; words clickable to the main site.  (The main site and forum are not integrated if that makes a difference.  They both reside in their own sub-directories.)&#60;br /&#62;
Don't know how to do this either.&#60;br /&#62;
I have to go out for a while, but I'll be back around 11:00 Chicago time.&#60;br /&#62;
Talk to you later.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12259</link>
<pubDate>Mon, 26 Nov 2007 14:46:17 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12259@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just grab the links to the individual forum pages then, and insert them into a WordPress page.  You'll have to maintain it manually, so if you add a new city you would need to add a new link to that WordPress page.  I imagine there is probably a way with integration to use the bbPress functions in a WordPress page but I think that's more work than it's worth, especially if your list of cities is pretty much set.&#60;/p&#62;
&#60;p&#62;Your WordPress page would be titled &#34;Forum&#34; then, and in that page would be the links to the individual forums.  Then you might not even need front-page.php since you'd be navigating directly to the parent forums for each city.  I think you would probably leave it there so if anyone navigated in the breadcrumbs to the next level 'up' they would still get a list of all cities, either links to the parents, or the way you had it set up initially with the long front page.
&#60;/p&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12252</link>
<pubDate>Mon, 26 Nov 2007 10:02:26 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12252@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh, BTW, what just to make sure I explained it clearly...&#60;br /&#62;
On my main WP site, in my navigation bar, I was going to have Page called forums.  If someone clicked on that &#34;Forum&#34; Page button they would see a list of cities.  I just thought it would be easier for them to be transported directly to their city of choice rather than having to scroll down the page once reaching the bbpress forums.
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12251</link>
<pubDate>Mon, 26 Nov 2007 10:01:15 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">12251@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Comment out third line from bottom in &#60;code&#62;forum.php&#60;/code&#62; like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php // post_form(); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>ChgoGrrl99 on "How Do I Do This?"</title>
<link>http://bbpress.org/forums/topic/how-do-i-do-this/page/2#post-12250</link>
<pubDate>Mon, 26 Nov 2007 09:56:47 +0000</pubDate>
<dc:creator>ChgoGrrl99</dc:creator>
<guid isPermaLink="false">12250@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You were right...I'm an idiot and uploaded my backup front page.&#60;br /&#62;
It works now, but it's not exactly what I was trying to do.&#60;br /&#62;
I was trying to do something like that on my main WP site.  You know, build a &#34;Page&#34; with those links on it.  But, I might leave it as is...if I do, however, can I take out the &#34;New Topic In This Forum&#34; underneath all of the sub-forums?&#60;br /&#62;
I don't want people posting things outside the individual sub-forums.&#60;br /&#62;
BTW, thanks for all of your help.  I never could have made this thing work without you and Chris
&#60;/p&#62;</description>
</item>

</channel>
</rss>
