<?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 Tag: horizontal</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 19 May 2013 08:13:59 +0000</pubDate>

<item>
<title>ghostdogroma on "Horizontal menu"</title>
<link>http://themeshaper.com/forums/topic/horizontal-menu-1#post-27201</link>
<pubDate>Mon, 28 May 2012 17:08:53 +0000</pubDate>
<dc:creator>ghostdogroma</dc:creator>
<guid isPermaLink="false">27201@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Tank is thank, and Totò  is too. Sorry.
&#60;/p&#62;</description>
</item>
<item>
<title>ghostdogroma on "Horizontal menu"</title>
<link>http://themeshaper.com/forums/topic/horizontal-menu-1#post-27200</link>
<pubDate>Mon, 28 May 2012 17:07:40 +0000</pubDate>
<dc:creator>ghostdogroma</dc:creator>
<guid isPermaLink="false">27200@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yesssss!!! Tank you a lot.&#60;br /&#62;
The sub-menù is Totò large, but probably i can repair it my self.&#60;br /&#62;
The site is offline ne cause under construction.&#60;br /&#62;
Bye.
&#60;/p&#62;</description>
</item>
<item>
<title>bogh on "Horizontal menu"</title>
<link>http://themeshaper.com/forums/topic/horizontal-menu-1#post-27197</link>
<pubDate>Mon, 28 May 2012 14:09:52 +0000</pubDate>
<dc:creator>bogh</dc:creator>
<guid isPermaLink="false">27197@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am not really sure of what you want, but try to add this in your style.css&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.sf-menu ul {width: 980px !important;}
.sf-menu ul li {float: left !important; width: 200px !important;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If this produces results similar to what you expected you should provide a link to your website.
&#60;/p&#62;</description>
</item>
<item>
<title>ghostdogroma on "Horizontal menu"</title>
<link>http://themeshaper.com/forums/topic/horizontal-menu-1#post-27196</link>
<pubDate>Mon, 28 May 2012 13:53:57 +0000</pubDate>
<dc:creator>ghostdogroma</dc:creator>
<guid isPermaLink="false">27196@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello. Is it possible view the sub-menu page in horizontal mode?&#60;br /&#62;
I try to modify #acces a like &#34;display: inline&#34; but none happen!&#60;br /&#62;
Sorry for my poor english.&#60;br /&#62;
Thx and bye.&#60;br /&#62;
Marco.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "horizontal social buttons under post title."</title>
<link>http://themeshaper.com/forums/topic/horizontal-social-buttons-under-post-title#post-24871</link>
<pubDate>Fri, 13 Jan 2012 18:59:06 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24871@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;not always better, just different.  i do like locate_template though.  it is pretty bad-ass as far as functions go.
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "horizontal social buttons under post title."</title>
<link>http://themeshaper.com/forums/topic/horizontal-social-buttons-under-post-title#post-24870</link>
<pubDate>Fri, 13 Jan 2012 18:04:50 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">24870@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Somehow I knew you would come up with a better way! :)&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "horizontal social buttons under post title."</title>
<link>http://themeshaper.com/forums/topic/horizontal-social-buttons-under-post-title#post-24869</link>
<pubDate>Fri, 13 Jan 2012 17:55:29 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24869@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;IE7 can slough off and die.  ;)  &#60;/p&#62;
&#60;p&#62;fwunder, if you don't want to create a separate file you could just put the html in your function (if you are using a newer thematic you can skip straight to using an override without needing to remove and add actions&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Create a custom access div with the menu and social bar
function childtheme_override_access() { ?&#38;gt;
    	&#38;lt;div id=&#38;quot;access&#38;quot;&#38;gt;
    		&#38;lt;?php
	    		if ((function_exists(&#38;quot;has_nav_menu&#38;quot;)) &#38;#38;&#38;#38; (has_nav_menu(apply_filters(&#38;#39;thematic_primary_menu_id&#38;#39;, &#38;#39;primary-menu&#38;#39;)))) {
	    			echo  wp_nav_menu(thematic_nav_menu_args());
    			} else {
    				echo  thematic_add_menuclass(wp_page_menu(thematic_page_menu_args()));
    			}
	    	?&#38;gt;

			&#38;lt;div id=&#38;quot;socialstuff&#38;quot;&#38;gt;I heart bacon&#38;lt;/div&#38;gt;

        &#38;lt;/div&#38;gt;&#38;lt;!-- #access --&#38;gt;
&#38;lt;?php }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;also, i'm getting away from using include in favor of locate_template() as it doesn't break things if it doesn't find the file.  &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/locate_template&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/locate_template&#60;/a&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;locate_template(&#38;#39;includes/social.php&#38;#39;,true);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>fwunder on "horizontal social buttons under post title."</title>
<link>http://themeshaper.com/forums/topic/horizontal-social-buttons-under-post-title#post-24867</link>
<pubDate>Fri, 13 Jan 2012 17:46:25 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">24867@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Bellying up to the social bar...&#60;/p&#62;
&#60;p&#62;I don't possess nearly the awesomeness of Ms. Viking, but as I am learning Thematic, I decided to play in my sandpit this morning with the horizontal social bar stuff and placement. Like she said, &#34;Thematic Trix are for kids, with SOME PHP knowledge.&#34; In addition to this excellent resource, Google is your friend.&#60;/p&#62;
&#60;p&#62;First thing I did was create a social.php file that I could play with till I got it the way I wanted it:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;? php
&#38;lt;div id=&#38;quot;social_bar&#38;quot;&#38;gt;
&#38;lt;!-- Facebook Like code --&#38;gt;
&#38;lt;!-- Google button --&#38;gt;
&#38;lt;!-- Twitter button --&#38;gt;
&#38;lt;/div&#38;gt;
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Happy with that, I needed to decide where to put it. I played with several different  areas using &#60;a href=&#34;http://visualizing.thematic4you.com/2008/09/layout-test/&#34; rel=&#34;nofollow&#34;&#62;http://visualizing.thematic4you.com/2008/09/layout-test/&#60;/a&#62; as my guide. For example, I tried:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function social_bar() {
    include(STYLESHEETPATH . &#38;#39;/includes/social.php&#38;#39;);
}
add_action(&#38;#39;thematic_abovepost&#38;#39;,&#38;#39;social_bar&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Note that I created an &#34;includes&#34; directory in my child theme just to keep all my sandpit toys in order. Using includes makes my function.php file easier for me to read too. I get confused easily. Anyway, I didn't like any of the places I found on the map. I wanted it in my menu bar space - access div. A little Googling and browsing &#60;a href=&#34;http://thematic4you.com/&#34; rel=&#34;nofollow&#34;&#62;http://thematic4you.com/&#60;/a&#62; I found what I was looking for.&#60;/p&#62;
&#60;p&#62;Basically, I needed to remove the access menu and and replace it with the menu AND my social bar. Cool.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//remove access menu so we can build a new one with social bar
function remove_thematic_actions() {
    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_thematic_actions&#38;#39;);

// Create a custom access div with the menu and social bar
function social_access() { ?&#38;gt;
    	&#38;lt;div id=&#38;quot;access&#38;quot;&#38;gt;
    		&#38;lt;?php
	    		if ((function_exists(&#38;quot;has_nav_menu&#38;quot;)) &#38;#38;&#38;#38; (has_nav_menu(apply_filters(&#38;#39;thematic_primary_menu_id&#38;#39;, &#38;#39;primary-menu&#38;#39;)))) {
	    			echo  wp_nav_menu(thematic_nav_menu_args());
    			} else {
    				echo  thematic_add_menuclass(wp_page_menu(thematic_page_menu_args()));
    			}
	    	?&#38;gt;

			&#38;lt;?php include(STYLESHEETPATH . &#38;#39;/includes/social.php&#38;#39;); ?&#38;gt;

        &#38;lt;/div&#38;gt;&#38;lt;!-- #access --&#38;gt;
&#38;lt;?php }
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;social_access&#38;#39;,9);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You'll see how it looks @ &#60;a href=&#34;http://www.timwunderlich.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.timwunderlich.com/&#60;/a&#62;&#60;br /&#62;
It looks pretty good in everything but IE7. I need to Google some more on the CSS stuff. Not sure if this helps you, but it helps me writing it up - repetitive motion thing. Have fun!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "horizontal social buttons under post title."</title>
<link>http://themeshaper.com/forums/topic/horizontal-social-buttons-under-post-title#post-24848</link>
<pubDate>Fri, 13 Jan 2012 02:15:23 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24848@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;umm that IS the tutorial in the most general sense, b/c as i said in that post... the process is the same almost no matter what you want to do.  if you genuinely read it (versus skimmed over it as soon as you saw a php function) then i would appreciate knowing what you find so confusing, so that i can improve my tutorial.  i tried to break it down to its most elemental parts and used what i thought was a pretty good analogy.  &#60;/p&#62;
&#60;p&#62;you WILL have to get SOME knowledge of PHP if you expect to be able to do anything w/ your theme.
&#60;/p&#62;</description>
</item>
<item>
<title>Dust on "horizontal social buttons under post title."</title>
<link>http://themeshaper.com/forums/topic/horizontal-social-buttons-under-post-title#post-24843</link>
<pubDate>Thu, 12 Jan 2012 23:49:19 +0000</pubDate>
<dc:creator>Dust</dc:creator>
<guid isPermaLink="false">24843@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;helgatheviking&#60;br /&#62;
Thank you for replying. I was hoping to find a tutorial on how to do it. I have no knowledge of php so the filter tutorial kinda goes over my head.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "horizontal social buttons under post title."</title>
<link>http://themeshaper.com/forums/topic/horizontal-social-buttons-under-post-title#post-24803</link>
<pubDate>Tue, 10 Jan 2012 23:17:00 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24803@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;filter thematic_postheader&#60;/p&#62;
&#60;p&#62;see my 'how to filter':&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/need-help-understanding-actions-vs-filters-and-changing-post-meta-and-utility#post-22638&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/need-help-understanding-actions-vs-filters-and-changing-post-meta-and-utility#post-22638&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Dust on "horizontal social buttons under post title."</title>
<link>http://themeshaper.com/forums/topic/horizontal-social-buttons-under-post-title#post-24774</link>
<pubDate>Tue, 10 Jan 2012 01:05:36 +0000</pubDate>
<dc:creator>Dust</dc:creator>
<guid isPermaLink="false">24774@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi&#60;br /&#62;
I found only one plugin that does this but I get errors and cache problems with it and decides to delete from my blog. I ended up just getting the code from Google+ and Tweeter, and Facebook and put it into a text widget that is in the Single Bottom widget area of Thematic. It is ok but I would really like to have the social buttons under every post title. Does anyone know how I could do this? Thanks in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>webmakerholly on "Create Horizontal Dropdown Child Menu that Holds on Subpage"</title>
<link>http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage#post-20298</link>
<pubDate>Tue, 05 Apr 2011 04:52:18 +0000</pubDate>
<dc:creator>webmakerholly</dc:creator>
<guid isPermaLink="false">20298@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Em hr, thanks for posting that code. Being a newbie, it took me a while to wrap my head around it. I got the horizontal menu to work beautifully, but I couldn't get the current page to &#34;stay put&#34; as grausc01 requested. In the default styling link you provided, I found this, which makes the current page link go bold:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.sf-navbar li li.current &#38;gt; a {
	font-weight:	bold;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I switched mine to make it highlight in grey instead of bold and voila! It works!&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.sf-navbar li li.current &#38;gt; a {
	color: #666;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>webmakerholly on "How to make a horizontal scrolling website"</title>
<link>http://themeshaper.com/forums/topic/how-to-make-a-horizontal-scrolling-website#post-20045</link>
<pubDate>Mon, 28 Mar 2011 17:32:51 +0000</pubDate>
<dc:creator>webmakerholly</dc:creator>
<guid isPermaLink="false">20045@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm trying to make a horizontal scrolling gallery website. I can't figure out how to get the content to scroll unless I give the div a specific width. I don't want to have to give it a specific width because the amount of content will change periodically. I thought giving it a width of 100% would do the trick, but no luck. &#60;/p&#62;
&#60;p&#62;Any suggestions would be greatly appreciated. Thank you!&#60;/p&#62;
&#60;p&#62;Here's a link: &#60;a href=&#34;http://www.velocitybranding.com/pauline/?page_id=108&#34; rel=&#34;nofollow&#34;&#62;http://www.velocitybranding.com/pauline/?page_id=108&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>gino on "Create Horizontal Dropdown Child Menu that Holds on Subpage"</title>
<link>http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage#post-19912</link>
<pubDate>Tue, 22 Mar 2011 16:13:47 +0000</pubDate>
<dc:creator>gino</dc:creator>
<guid isPermaLink="false">19912@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Guys&#60;/p&#62;
&#60;p&#62;Very helpful post&#60;/p&#62;
&#60;p&#62;I am trying to use this too, and the dropdown works.&#60;/p&#62;
&#60;p&#62;But it also drops the element next to the ancestor with children in. Any idea what might be causing it?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Gino
&#60;/p&#62;</description>
</item>
<item>
<title>moncho on "Create Horizontal Dropdown Child Menu that Holds on Subpage"</title>
<link>http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage#post-18480</link>
<pubDate>Tue, 18 Jan 2011 23:52:37 +0000</pubDate>
<dc:creator>moncho</dc:creator>
<guid isPermaLink="false">18480@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;how can i set in the css two diffrent font color...? one for the upper &#34;main menu&#34; and one for the child?&#60;/p&#62;
&#60;p&#62;take a look at my menu&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.pose.ch&#34; rel=&#34;nofollow&#34;&#62;www.pose.ch&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>moncho on "Create Horizontal Dropdown Child Menu that Holds on Subpage"</title>
<link>http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage#post-18423</link>
<pubDate>Mon, 17 Jan 2011 13:54:35 +0000</pubDate>
<dc:creator>moncho</dc:creator>
<guid isPermaLink="false">18423@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;can anybody send me the function.php from the thematic theme with tihs snippet already integrated? this would be verry helpful for me?
&#60;/p&#62;</description>
</item>
<item>
<title>craw on "space between links in horizontal menu"</title>
<link>http://themeshaper.com/forums/topic/space-between-links-in-horizontal-menu#post-18266</link>
<pubDate>Wed, 12 Jan 2011 00:42:30 +0000</pubDate>
<dc:creator>craw</dc:creator>
<guid isPermaLink="false">18266@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;this was how I eventually created spaces between links in my vertical menu for those that are interested. &#60;/p&#62;
&#60;p&#62;.menu li{&#60;br /&#62;
	margin-bottom: 10px;&#60;br /&#62;
}
&#60;/p&#62;</description>
</item>
<item>
<title>craw on "space between links in horizontal menu"</title>
<link>http://themeshaper.com/forums/topic/space-between-links-in-horizontal-menu#post-17954</link>
<pubDate>Tue, 28 Dec 2010 20:59:40 +0000</pubDate>
<dc:creator>craw</dc:creator>
<guid isPermaLink="false">17954@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for your help!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "space between links in horizontal menu"</title>
<link>http://themeshaper.com/forums/topic/space-between-links-in-horizontal-menu#post-17917</link>
<pubDate>Sun, 26 Dec 2010 17:22:49 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">17917@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;try &#60;a href=&#34;http://getfirebug.com&#34; rel=&#34;nofollow&#34;&#62;http://getfirebug.com&#60;/a&#62; it is perfect for solving all these types of css questions.  but you need to get more specific in your css selector&#60;/p&#62;
&#60;p&#62;.sf-menu a&#60;br /&#62;
or .sf-menu li&#60;br /&#62;
or .sf-menu li a&#60;/p&#62;
&#60;p&#62;one of those should work
&#60;/p&#62;</description>
</item>
<item>
<title>craw on "space between links in horizontal menu"</title>
<link>http://themeshaper.com/forums/topic/space-between-links-in-horizontal-menu#post-17911</link>
<pubDate>Fri, 24 Dec 2010 20:01:07 +0000</pubDate>
<dc:creator>craw</dc:creator>
<guid isPermaLink="false">17911@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Can I increase the space between links in my horizontal menu with CSS? I've been trying it using the .sf-menu selector and nothing's working. Any help would be great. Great theme by the way! Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Horizontally align logo and menu"</title>
<link>http://themeshaper.com/forums/topic/horizontally-align-logo-and-menu#post-16238</link>
<pubDate>Wed, 13 Oct 2010 04:52:29 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">16238@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;how about&#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);
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_brandingopen&#38;#39;,1);
}
add_action(&#38;#39;init&#38;#39;,&#38;#39;remove_access&#38;#39;);

add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_access&#38;#39;,9);
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_brandingopen&#38;#39;,2);

function header_inner_open(){
echo &#38;#39;&#38;lt;div id=&#38;quot;header-inner&#38;quot; class=&#38;quot;clearfix&#38;quot;&#38;gt;&#38;#39;;
}
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;header_inner_open&#38;#39;,1);

function header_inner_close(){
echo &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!--#header-inner--&#38;gt;&#38;#39;;
}
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;header_inner_close&#38;#39;,9);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and for css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* new clearfix
* &#60;a href=&#34;http://perishablepress.com/press/2009/12/06/new-clearfix-hack/&#34; rel=&#34;nofollow&#34;&#62;http://perishablepress.com/press/2009/12/06/new-clearfix-hack/&#60;/a&#62;
*/
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: &#38;quot; &#38;quot;;
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

#header-inner{
width: 940px;
margin: 0 auto;
}

#branding{
width: 350px;
float: left;
}

#access{
width: 350px;
float: right;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;you may need to do something w/ .menu too, but i'm not 100% sure.. i didn't fully test this, but it ought to get you the proper markup to do what you are trying to accomplish.
&#60;/p&#62;</description>
</item>
<item>
<title>rashadpleasant on "Horizontally align logo and menu"</title>
<link>http://themeshaper.com/forums/topic/horizontally-align-logo-and-menu#post-16234</link>
<pubDate>Tue, 12 Oct 2010 21:57:47 +0000</pubDate>
<dc:creator>rashadpleasant</dc:creator>
<guid isPermaLink="false">16234@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;did you ever find the answer for this issue... i've tried dif widths but it hasn't worked yet...
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Horizontally align logo and menu"</title>
<link>http://themeshaper.com/forums/topic/horizontally-align-logo-and-menu#post-15870</link>
<pubDate>Tue, 28 Sep 2010 03:08:19 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">15870@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i do know that both #branding div and #access ul.menu have widths of 940px.  so first you probably have to give them much smaller widths... try 400px at first or something.  then you can probably float the #branding and #access divs and they might line up?
&#60;/p&#62;</description>
</item>
<item>
<title>02rilund on "Horizontally align logo and menu"</title>
<link>http://themeshaper.com/forums/topic/horizontally-align-logo-and-menu#post-15826</link>
<pubDate>Sun, 26 Sep 2010 08:25:28 +0000</pubDate>
<dc:creator>02rilund</dc:creator>
<guid isPermaLink="false">15826@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi!&#60;/p&#62;
&#60;p&#62;I've searched the forum but haven't found anything on this. Does anybody know how to align the logo with the menu? I've moved the menu to the right using float:right and added a logo using:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.cozmoslabs.com/2009/05/28/add-a-header-image-to-thematic-the-easy-way/comment-page-1/&#34; rel=&#34;nofollow&#34;&#62;http://www.cozmoslabs.com/2009/05/28/add-a-header-image-to-thematic-the-easy-way/comment-page-1/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Help would be much appreciated!
&#60;/p&#62;</description>
</item>
<item>
<title>tradiArt on "Create Horizontal Dropdown Child Menu that Holds on Subpage"</title>
<link>http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage#post-13441</link>
<pubDate>Sun, 27 Jun 2010 16:18:21 +0000</pubDate>
<dc:creator>tradiArt</dc:creator>
<guid isPermaLink="false">13441@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello!&#60;/p&#62;
&#60;p&#62;Seems that this bug: &#60;a href=&#34;http://core.trac.wordpress.org/ticket/12812&#34; rel=&#34;nofollow&#34;&#62;http://core.trac.wordpress.org/ticket/12812&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;wasn't able to do what I wanted in WP3.&#60;/p&#62;
&#60;p&#62;Now seems more easier to achieve. Thank you for your help!
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Create Horizontal Dropdown Child Menu that Holds on Subpage"</title>
<link>http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage#post-12443</link>
<pubDate>Mon, 17 May 2010 11:55:04 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">12443@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;if you mean the 'depth' thing:&#60;/p&#62;
&#60;p&#62;There is an undocumented parameter 'depth' in wp_nav_menu =&#38;gt; &#60;a href=&#34;http://core.trac.wordpress.org/browser/trunk/wp-includes/nav-menu-template.php&#34;&#62;wp-includes/nav-menu-template.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>tradiArt on "Create Horizontal Dropdown Child Menu that Holds on Subpage"</title>
<link>http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage#post-12431</link>
<pubDate>Sun, 16 May 2010 23:04:21 +0000</pubDate>
<dc:creator>tradiArt</dc:creator>
<guid isPermaLink="false">12431@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello!&#60;/p&#62;
&#60;p&#62;This is exactly what I am looking for...&#60;/p&#62;
&#60;p&#62;Also seems that in this page is solved: &#60;a href=&#34;http://www.aceconcrete.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.aceconcrete.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;but I'm working in WP3 beta and I want to use the wp_nav_menu function, as seen here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://programming.thematic4you.com/2010/03/how-to-test-wp_nav_menu-with-thematic/&#34; rel=&#34;nofollow&#34;&#62;http://programming.thematic4you.com/2010/03/how-to-test-wp_nav_menu-with-thematic/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Is there any way that this can be done in WP3?&#60;/p&#62;
&#60;p&#62;Thank you!!
&#60;/p&#62;</description>
</item>
<item>
<title>tmayo on "Create Horizontal Dropdown Child Menu that Holds on Subpage"</title>
<link>http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage#post-11171</link>
<pubDate>Sat, 03 Apr 2010 21:15:00 +0000</pubDate>
<dc:creator>tmayo</dc:creator>
<guid isPermaLink="false">11171@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@EM HR - thanks for posting this.  Just what I needed to get going with a horizontal submenu.
&#60;/p&#62;</description>
</item>
<item>
<title>flick on "Has anybody tried a horizontal layout?"</title>
<link>http://themeshaper.com/forums/topic/has-anybody-tried-a-horizontal-layout#post-10112</link>
<pubDate>Tue, 23 Feb 2010 20:50:00 +0000</pubDate>
<dc:creator>flick</dc:creator>
<guid isPermaLink="false">10112@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@torsteino: I'm assuming you're just referring to the superfish menu and not the horizontal layout?   Perhaps you can share some more details about what you've attempted to do so far.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
