<?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: position</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: position</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 22:15:39 +0000</pubDate>

<item>
<title>chrishajer on "Wordpress Theme Into BBpress"</title>
<link>http://bbpress.org/forums/topic/wordpress-theme-into-bbpress#post-14890</link>
<pubDate>Wed, 02 Apr 2008 02:53:54 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14890@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Start by sharing a link to your forum and describing how you would like it to look unless it's completely obvious to anyone viewing exactly what is wrong with the positioning.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Nick212004 on "Wordpress Theme Into BBpress"</title>
<link>http://bbpress.org/forums/topic/wordpress-theme-into-bbpress#post-14889</link>
<pubDate>Wed, 02 Apr 2008 00:39:56 +0000</pubDate>
<dc:creator>Nick212004</dc:creator>
<guid isPermaLink="false">14889@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have integrated my wordpress theme into my bbpress theme but even though it looks the same, the text and forum is not in the same postition as they are supposed to be. How do I fix this?
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Formating with wpmu theme"</title>
<link>http://bbpress.org/forums/topic/formating-with-wpmu-theme#post-7785</link>
<pubDate>Fri, 01 Jun 2007 01:05:12 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7785@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That's right.  A typical template file in your theme will be like this: &#60;code&#62;bb_get_header()&#60;/code&#62; loads &#60;code&#62;header.php&#60;/code&#62; from your theme's folder or otherwise the default kakumei one (header.php should contain what is now in your &#60;em&#62;second&#60;/em&#62; div called &#60;code&#62;header&#60;/code&#62;), then there's a bunch of content, and then &#60;code&#62;bb_get_footer()&#60;/code&#62; will get the sidebar and the footer elements in &#60;code&#62;footer.php&#60;/code&#62;. You won't need to modify this or add any files or anything like that to make your theme, at least in all probability.&#60;/p&#62;
&#60;p&#62;Because &#60;code&#62;header.php&#60;/code&#62; and &#60;code&#62;footer.php&#60;/code&#62; are always called, the unchanging HTML and php should all be in there. &#60;/p&#62;
&#60;p&#62;&#60;strong&#62;header.php&#60;/strong&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;html
	head
		//some head stuff, links and meta etc
	/head
	body
		wrap
			header
				//header HTML for your logo etc
			/header&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;strong&#62;whatevertemplate.php&#60;/strong&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.
			content
				//content HTML and php
			/content&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;strong&#62;footer.php&#60;/strong&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.
			sidebar
				//sidebar HTML and stuff
			/sidebar
			footer
				//footer HTML and stuff
			/footer
		/wrap
	/body
/html&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I hope that's clear, it's a little late so I might have some tired logic. This is pseudoHTML - &#60;code&#62;body&#60;/code&#62; corresponds to &#60;code&#62;&#38;lt;body&#38;gt;&#60;/code&#62;, but &#60;code&#62;wrap&#60;/code&#62; corresponds to &#60;code&#62;&#38;lt;div id=&#38;quot;wrap&#38;quot;&#38;gt;&#60;/code&#62; and &#60;code&#62;sidebar&#60;/code&#62; = &#60;code&#62;&#38;lt;div id=&#38;quot;sidebar&#38;quot;&#38;gt;&#60;/code&#62; etc. I hope that's okay.&#60;/p&#62;
&#60;p&#62;So there are usually only three files that directly contribute to the output of the forum. Most of the HTML you're messing about with should go in &#60;code&#62;header.php&#60;/code&#62; or &#60;code&#62;footer.php&#60;/code&#62;.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;bb_get_header()&#60;/code&#62; and &#60;code&#62;bb_get_footer()&#60;/code&#62; deal with all the mucky stuff for you, you don't need to 'call' them (if I'm understanding you right) from the main template individually. Just make sure they're proper HTML inside &#60;code&#62;header.php&#60;/code&#62; and &#60;code&#62;footer.php&#60;/code&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>mfaxion on "Formating with wpmu theme"</title>
<link>http://bbpress.org/forums/topic/formating-with-wpmu-theme#post-7783</link>
<pubDate>Thu, 31 May 2007 23:54:40 +0000</pubDate>
<dc:creator>mfaxion</dc:creator>
<guid isPermaLink="false">7783@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;ok. Played around with the code a little bit. Have a few questions. &#60;/p&#62;
&#60;p&#62;With this div tag structure this is referring to the overall structure spanning the multiple php files in the template folder?&#60;/p&#62;
&#60;p&#62;Do I need to include the div ids for header, sidebar, content, footer whenever they are called in the templates php files? &#60;/p&#62;
&#60;p&#62;I assume that the child element reference is that I should have all my div header, div sidebar and div footers closed when those sections end.&#60;/p&#62;
&#60;p&#62;Since there are a handful of php files in the template can you explain how I know which to add?&#60;/p&#62;
&#60;p&#62;If you couldn't tell I'm pretty confused! Really appreciating the help.
&#60;/p&#62;</description>
</item>
<item>
<title>mfaxion on "Formating with wpmu theme"</title>
<link>http://bbpress.org/forums/topic/formating-with-wpmu-theme#post-7775</link>
<pubDate>Thu, 31 May 2007 16:27:37 +0000</pubDate>
<dc:creator>mfaxion</dc:creator>
<guid isPermaLink="false">7775@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks! I'll give it a try when I have a break between meetings! I really appreciate the help!!
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Formating with wpmu theme"</title>
<link>http://bbpress.org/forums/topic/formating-with-wpmu-theme#post-7767</link>
<pubDate>Thu, 31 May 2007 11:32:34 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7767@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Your HTML has improved. This is your current structure of major div elements:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;div id=&#38;quot;wrap&#38;quot;
	div header [1]
		div header [2]
		div wrap [x]
		div right
			div sidebar
	div content
		div hottags
		div discussions
		div footer&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You have two div elements with id &#60;code&#62;wrap&#60;/code&#62;. IDs should always be unique, and the second one, marked with &#60;code&#62;[x]&#60;/code&#62;, is empty anyway so you can go ahead and delete it. You also have duplicate &#60;code&#62;header&#60;/code&#62;s. The content of &#60;code&#62;header [2]&#60;/code&#62; should be the only thing in &#60;code&#62;header [1]&#60;/code&#62;. Div &#60;code&#62;sidebar&#60;/code&#62; should be at the same level as div &#60;code&#62;header&#60;/code&#62; is, not a child element. You can also delete the div &#60;code&#62;right&#60;/code&#62;, as it's kind of pointless.&#60;/p&#62;
&#60;p&#62;Div &#60;code&#62;footer&#60;/code&#62; should not be in &#60;code&#62;content&#60;/code&#62;. It should be on the same level, not as a child. That should fix some problems with it, too. You can take out both &#60;code&#62;float: left;&#60;/code&#62; and &#60;code&#62;display: inline;&#60;/code&#62; in the CSS file for div &#60;code&#62;content&#60;/code&#62; - they seem to cancel each other out, and &#60;code&#62;float&#60;/code&#62;ing it is unnecessary anyway and could come back to bite you later. &#60;/p&#62;
&#60;p&#62;Your main problems in IE seem to be (seem, I don't have dev tools for it) that major &#60;code&#62;wrap&#60;/code&#62; is not centered and that &#60;code&#62;content&#60;/code&#62; is just wide enough to conflict with &#60;code&#62;sidebar&#60;/code&#62;. Slowly decrement the width of &#60;code&#62;content&#60;/code&#62; and test if that makes it work. I am surprised it's not centered in IE7, I'm fairly sure that the CSS &#60;code&#62;margin: 0 auto;&#60;/code&#62; worked. However, to center it in IE6, you need to add the &#60;code&#62;text-align: center;&#60;/code&#62; property to the &#60;code&#62;wrap&#60;/code&#62; element (in CSS). To counter the effect this has on text, you need to add &#60;code&#62;text-align: left;&#60;/code&#62; to &#60;code&#62;header&#60;/code&#62;, &#60;code&#62;sidebar&#60;/code&#62; and &#60;code&#62;content&#60;/code&#62;.&#60;/p&#62;
&#60;p&#62;When logged in, the &#60;code&#62;div&#60;/code&#62; class &#60;code&#62;post&#60;/code&#62; at the very bottom of the sidebar is not closed. You can just get rid of it I think. You are also using &#60;code&#62;li&#60;/code&#62; elements for your Private Message Manager and Community Forum links, without actually having opened a &#60;code&#62;ul&#60;/code&#62; or &#60;code&#62;ol&#60;/code&#62; for them, which would probably cause problems so just remove the &#60;code&#62;li&#60;/code&#62; tags.&#60;/p&#62;
&#60;p&#62;That's a start, anyway. Try it and we'll see if it's fixed anything.
&#60;/p&#62;</description>
</item>
<item>
<title>mfaxion on "Formating with wpmu theme"</title>
<link>http://bbpress.org/forums/topic/formating-with-wpmu-theme#post-7763</link>
<pubDate>Thu, 31 May 2007 09:30:14 +0000</pubDate>
<dc:creator>mfaxion</dc:creator>
<guid isPermaLink="false">7763@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;fel64. Thanks for the input on the HTML!&#60;/p&#62;
&#60;p&#62;Created a test account for people to see the Account and problems. &#60;/p&#62;
&#60;p&#62;username=demo&#60;br /&#62;
psswrd=demo&#60;/p&#62;
&#60;p&#62;mysoberlife dot com&#60;/p&#62;
&#60;p&#62;I added div id=wrap, div id=header, &#38;#38; div id=right to my bbpress template. That solved all position issues in Mozilla. However IE is even more of a mess now.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Formating with wpmu theme"</title>
<link>http://bbpress.org/forums/topic/formating-with-wpmu-theme#post-7756</link>
<pubDate>Wed, 30 May 2007 21:42:47 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7756@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;#1: There are no style rules to tell the forum to go into the column. It's just made of unstyled divs inside the body element. I don't know how comfortable you are with HTML, but they should go inside the div with id wrap. That would really fix the greatest issue. You don't need CSS to do that, since the &#60;code&#62;wrap&#60;/code&#62; element would already do that (and the forum could actually be next to the sidebar).&#60;/p&#62;
&#60;p&#62;#2: Please create a test account for us to see the HTML that's causing a problem, or log in and copy the HTML to a pastebin and link to it here. My clue would be that there's something wrong with the HTML, by the way. Is this an IE7 exclusive problem?
&#60;/p&#62;</description>
</item>
<item>
<title>mfaxion on "Formating with wpmu theme"</title>
<link>http://bbpress.org/forums/topic/formating-with-wpmu-theme#post-7752</link>
<pubDate>Wed, 30 May 2007 17:38:31 +0000</pubDate>
<dc:creator>mfaxion</dc:creator>
<guid isPermaLink="false">7752@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I know its been asked. Yes I have searched. Have everything integrated besides the positioning. &#60;/p&#62;
&#60;p&#62;mysoberlife.com/forums/&#60;br /&#62;
Problem 1: My forum loads on the left of the screen, below sidebar and above the header.&#60;/p&#62;
&#60;p&#62;Tried changing the position of the get_header to the end of the files in bbpress, that only created sidebar problems. &#60;/p&#62;
&#60;p&#62;Am I missing something simple? I assume that I need to modify the CSS file for displaying the content to make it reference the correct location. I tried using an absolute tag but that creates problems for people with different screen sizes. Any recommendations on the CSS code to use?&#60;/p&#62;
&#60;p&#62;Anyone have an idea of what to do? I'm loading the sidebar at the beginning instead of the end of bbpress php files.&#60;/p&#62;
&#60;p&#62;By the way I'm having the config for bbpress call the wp-get-header. Inserted the relevant bbpress styling into my wpmu themes stylesheet.&#60;/p&#62;
&#60;p&#62;Problem 2: On IE 7 part of my sidebar loads in the area where I want the forum to go. I believe it thinks that the sidebar is ending, some div work fixed it for the wpmu part of the site. &#60;/p&#62;
&#60;p&#62;I have a login form that loads different information (control panel) once a user logs in. the problem only occurs when a user is logged in. If anyone has a clue I'd appreciate it.&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
-Matt
&#60;/p&#62;</description>
</item>

</channel>
</rss>
