<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: POSTs Pagination Is Backwards?</title>
		<link>http://www.kriesi.at/support/topic/posts-pagination-is-backwards</link>
		<description>Support Forum - Topic: POSTs Pagination Is Backwards?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 16:32:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/posts-pagination-is-backwards" rel="self" type="application/rss+xml" />

		<item>
			<title>WebDesignGuy on "POSTs Pagination Is Backwards?"</title>
			<link>http://www.kriesi.at/support/topic/posts-pagination-is-backwards#post-33770</link>
			<pubDate>Fri, 02 Dec 2011 21:09:30 +0000</pubDate>
			<dc:creator>WebDesignGuy</dc:creator>
			<guid isPermaLink="false">33770@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;So what you suggest required a core code hack (because the style is applied only to the href elements - see function-set-avia-frontend.php) so I had to add another &#38;lt;span&#38;gt; to enclose the href elements in which I could float right, I tried this and got it to work in all browsers except for IE7.&#60;/p&#62;
&#60;p&#62;I could find no solution for IE7 because both the pagination and the sidebar are positioned relative to the page. So I would be happy to use the way it is with IE7 and apply my hack for all the other browsers.&#60;/p&#62;
&#60;p&#62;The only way I think I can make it work is to detect IE7 and assign that to a variable then use if/else, but I haven't found a way to just detect IE7 and assign a variable which I can use in the if/else statement...&#60;/p&#62;
&#60;p&#62;&#38;lt;b&#38;gt;Do you know of a way to detect IE7 and assign that to a variable?&#38;lt;/b&#38;gt;&#60;br /&#62;
Whatever I tried (adding functions) in this file function-set-avia-frontend.php would always give me a &#34;blank&#34; page..so I'm missing something.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "POSTs Pagination Is Backwards?"</title>
			<link>http://www.kriesi.at/support/topic/posts-pagination-is-backwards#post-33210</link>
			<pubDate>Sun, 27 Nov 2011 08:05:01 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">33210@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'd try to float the span only (to the right) and not the a href elements.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WebDesignGuy on "POSTs Pagination Is Backwards?"</title>
			<link>http://www.kriesi.at/support/topic/posts-pagination-is-backwards#post-33168</link>
			<pubDate>Sat, 26 Nov 2011 17:58:43 +0000</pubDate>
			<dc:creator>WebDesignGuy</dc:creator>
			<guid isPermaLink="false">33168@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Well I been thinkin about what you said and I have found that this is causing the issue:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
#top .pagination span, #top .pagination a {&#60;br /&#62;
display:block;&#60;br /&#62;
float:right;&#60;br /&#62;
font-size:11px;&#60;br /&#62;
line-height:13px;&#60;br /&#62;
padding:2px 9px 1px 9px;&#60;br /&#62;
text-decoration:none;&#60;br /&#62;
width:auto;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I floated the pagination (.pagination a) right so that the navigation would be on the &#34;right&#34; side instead of the left, and I floated the (pagination-meta) Page 1 of 3 to the left.&#60;br /&#62;
The problem is that once the nav is floated right I get the backwards numbering&#60;/p&#62;
&#60;p&#62;3 &#124; 2 &#124; 1 &#124;&#60;/p&#62;
&#60;p&#62;So the question is how do I get the .pagination a to be postioned on the right and yet retain proper numerical sequence?&#60;/p&#62;
&#60;p&#62;I haven't figured that out yet....any suggestions?&#60;/p&#62;
&#60;p&#62;However, I would think that a text-align:left would solve this but it doesn't?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WebDesignGuy on "POSTs Pagination Is Backwards?"</title>
			<link>http://www.kriesi.at/support/topic/posts-pagination-is-backwards#post-33167</link>
			<pubDate>Sat, 26 Nov 2011 17:25:13 +0000</pubDate>
			<dc:creator>WebDesignGuy</dc:creator>
			<guid isPermaLink="false">33167@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sorry I haven't gone live with the site yet...so I can't post a link for you.&#60;br /&#62;
I'm pretty efficient with CSS and have looked over the #top .pagination entries and I don't see how the CSS would be affecting the order of the page links?&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;/p&#62;
&#60;p&#62;/*pagination*/&#60;/p&#62;
&#60;p&#62;#top .pagination {&#60;br /&#62;
clear:both;&#60;br /&#62;
padding: 10px 0;&#60;br /&#62;
position:relative;&#60;br /&#62;
z-index:3;&#60;br /&#62;
line-height: 13px;&#60;br /&#62;
overflow: hidden;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .pagination span, #top .pagination a {&#60;br /&#62;
display:block;&#60;br /&#62;
float:right;&#60;br /&#62;
font-size:11px;&#60;br /&#62;
line-height:13px;&#60;br /&#62;
padding:2px 9px 1px 9px;&#60;br /&#62;
text-decoration:none;&#60;br /&#62;
width:auto;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .pagination .current{&#60;br /&#62;
font-size:11px;&#60;br /&#62;
padding:2px 9px 1px 9px;&#60;br /&#62;
font-weight: bold;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .pagination a:hover{&#60;br /&#62;
text-decoration: underline;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .pagination .pagination-meta{&#60;br /&#62;
float:left;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "POSTs Pagination Is Backwards?"</title>
			<link>http://www.kriesi.at/support/topic/posts-pagination-is-backwards#post-33141</link>
			<pubDate>Sat, 26 Nov 2011 07:43:53 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">33141@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
can you post a link please - maybe it's a css problem.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WebDesignGuy on "POSTs Pagination Is Backwards?"</title>
			<link>http://www.kriesi.at/support/topic/posts-pagination-is-backwards#post-33112</link>
			<pubDate>Fri, 25 Nov 2011 17:43:49 +0000</pubDate>
			<dc:creator>WebDesignGuy</dc:creator>
			<guid isPermaLink="false">33112@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The pagination on POSTS is backwards and shows like this&#60;/p&#62;
&#60;p&#62; 3 &#124; 2 &#124; 1 &#124;&#60;/p&#62;
&#60;p&#62;How do I get the page numbers &#34;current&#34; and &#34;active&#34; to show like this (as it should be in proper numerical order and not backwards?):&#60;/p&#62;
&#60;p&#62;1 &#124; 2 &#124; 3 &#124;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
