<?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>ThemeShaper Forums Topic: moving my nav bar</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Thu, 23 May 2013 13:57:11 +0000</pubDate>

<item>
<title>nimmolo on "moving my nav bar"</title>
<link>http://themeshaper.com/forums/topic/moving-my-nav-bar#post-25899</link>
<pubDate>Tue, 13 Mar 2012 21:33:32 +0000</pubDate>
<dc:creator>nimmolo</dc:creator>
<guid isPermaLink="false">25899@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Kaylehope- check out, in your CSS, the properties of #access and of .menu&#60;/p&#62;
&#60;p&#62;#access probably contains the menu.&#60;/p&#62;
&#60;p&#62;You should be able to make either of those things float:right; as long as nothing else is in their way. &#60;/p&#62;
&#60;p&#62;Use firebug, or the &#34;inspect element&#34; right-click feature in Chrome or Safari, to find out where those divs are in your layout.&#60;/p&#62;
&#60;p&#62;*whoops! crossposted with Scott Nix! sorry.
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "moving my nav bar"</title>
<link>http://themeshaper.com/forums/topic/moving-my-nav-bar#post-25898</link>
<pubDate>Tue, 13 Mar 2012 21:30:58 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">25898@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;If you used the code above in your functions.php, the menu should be in the correct spot structurally.&#60;/p&#62;
&#60;p&#62;Then you will need to modify the 'float' in the style css.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.sf-menu { float: right; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It is fairly simple, if you are having more trouble, a link would help.
&#60;/p&#62;</description>
</item>
<item>
<title>kaylehope on "moving my nav bar"</title>
<link>http://themeshaper.com/forums/topic/moving-my-nav-bar#post-25897</link>
<pubDate>Tue, 13 Mar 2012 20:42:31 +0000</pubDate>
<dc:creator>kaylehope</dc:creator>
<guid isPermaLink="false">25897@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am having the same problem, except I'm trying to get the navigation to be in the right corner, lined up with the edge of the header and main content area. Any suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "moving my nav bar"</title>
<link>http://themeshaper.com/forums/topic/moving-my-nav-bar#post-12402</link>
<pubDate>Sat, 15 May 2010 01:54:03 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">12402@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;an ehug?  well gosh.  ok it sounds like you are really new to thematic and child themes.. so i am going to recommend that you check out these two blog posts to get you started:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.catswhocode.com/blog/wordpress-how-to-easily-create-a-thematic-child-theme&#34; rel=&#34;nofollow&#34;&#62;http://www.catswhocode.com/blog/wordpress-how-to-easily-create-a-thematic-child-theme&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://wptheming.com/2009/10/useful-thematic-filters/&#34; rel=&#34;nofollow&#34;&#62;http://wptheming.com/2009/10/useful-thematic-filters/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;also getfirebug.com for a firefox addon that is &#60;strong&#62;essential&#60;/strong&#62; to finding css properties.&#60;/p&#62;
&#60;p&#62;the code i gave you goes in your child themes functions.php file.  once you put it there i 'believe' it will default to the left and you might not need to change any css.
&#60;/p&#62;</description>
</item>
<item>
<title>jnune09 on "moving my nav bar"</title>
<link>http://themeshaper.com/forums/topic/moving-my-nav-bar#post-12398</link>
<pubDate>Fri, 14 May 2010 21:50:50 +0000</pubDate>
<dc:creator>jnune09</dc:creator>
<guid isPermaLink="false">12398@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I tried to throw in &#60;/p&#62;
&#60;p&#62;float: right; to move it but it doesn't seem to work can you tell me where to put the code also the one you gave me!? :)&#60;/p&#62;
&#60;p&#62;btw you are so helpful! im giving you a eHug.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "moving my nav bar"</title>
<link>http://themeshaper.com/forums/topic/moving-my-nav-bar#post-12374</link>
<pubDate>Fri, 14 May 2010 05:55:24 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">12374@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;ugh.  this must be on the forum somewhere b/c I am sure that i have written it.  however, the search function is not the strongest and maybe i am imaging it....&#60;/p&#62;
&#60;p&#62;how to move thematic access (the navigation bar) above the #header div :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_access() {
remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_access&#38;#39;,9);
}
add_action(&#38;#39;init&#38;#39;,&#38;#39;remove_access&#38;#39;);
add_action(&#38;#39;thematic_aboveheader&#38;#39;,thematic_access&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>jnune09 on "moving my nav bar"</title>
<link>http://themeshaper.com/forums/topic/moving-my-nav-bar#post-12368</link>
<pubDate>Thu, 13 May 2010 19:43:59 +0000</pubDate>
<dc:creator>jnune09</dc:creator>
<guid isPermaLink="false">12368@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;how can I move my nav bar to the upper left corner like this site... homebase610.com&#60;/p&#62;
&#60;p&#62;Ive try using the customizing code that is provided on the site but don't know what to change. here is my site gamesdammit.com
&#60;/p&#62;</description>
</item>

</channel>
</rss>
