<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<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>WordPress.com Forums &#187; Topic: Twenty Eleven Menu Links</title>
		<link>http://en.forums.wordpress.com/topic/twenty-eleven-menu-links</link>
		<description>WordPress.com Forums &#187; Topic: Twenty Eleven Menu Links</description>
		<language>en</language>
		<pubDate>Sun, 26 May 2013 04:12:34 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/twenty-eleven-menu-links" rel="self" type="application/rss+xml" />

		<item>
			<title>authorsullivan on "Twenty Eleven Menu Links"</title>
			<link>http://en.forums.wordpress.com/topic/twenty-eleven-menu-links#post-1165323</link>
			<pubDate>Wed, 27 Feb 2013 15:36:08 +0000</pubDate>
			<dc:creator>authorsullivan</dc:creator>
			<guid isPermaLink="false">1165323@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks.
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Twenty Eleven Menu Links"</title>
			<link>http://en.forums.wordpress.com/topic/twenty-eleven-menu-links#post-1164572</link>
			<pubDate>Tue, 26 Feb 2013 20:03:51 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1164572@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>That's a guaranteed way to mess things up when you're not an expert. </p>
<p>The solution suggested by designsimply (in the thread timethief linked to) is correct, of course, but it may not work if you simply copypaste it into the editor will at the same time retaining all the original stuff. For instance, at the moment you've got <em>both</em> of these in your CSS:<br />
<pre><code>#branding .only-search + #access div {
    padding-right: 205px;
}
#branding .only-search + #access div {
    padding-right: 0;
}</code></pre>
<p>So you should start by reverting to the Add-on mode, and enter <em>only</em> the changes you make.<br />
For example, you had changed only the font size of #access ul. Under the Add-on mode, you'll add only this:<br />
<pre><code>#access ul {
	font-size: 20px;
}</code></pre>
<p>And when designsimply tells you that one of the changes you need in order to center the menu is this:<br />
<pre><code>#access ul {
	display: inline-block;
	margin: 0;
	padding: 0;
}</code></pre>
<p>you won't paste the whole thing, you'll add the rules under the selector you have already added:<br />
<pre><code>#access ul {
	font-size: 20px;
	display: inline-block;
	margin: 0;
	padding: 0;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>authorsullivan on "Twenty Eleven Menu Links"</title>
			<link>http://en.forums.wordpress.com/topic/twenty-eleven-menu-links#post-1164535</link>
			<pubDate>Tue, 26 Feb 2013 19:31:37 +0000</pubDate>
			<dc:creator>authorsullivan</dc:creator>
			<guid isPermaLink="false">1164535@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I selected Replacement and I pasted the theme's CSS in the editor.
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Twenty Eleven Menu Links"</title>
			<link>http://en.forums.wordpress.com/topic/twenty-eleven-menu-links#post-1164513</link>
			<pubDate>Tue, 26 Feb 2013 19:19:59 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1164513@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>That's a complete section of the original stylesheet, with various modifications. Have you pasted the entire stylesheet in the CSS editor? Which mode is selected, Add-on or Replacement?
</p>
]]></description>
					</item>
		<item>
			<title>authorsullivan on "Twenty Eleven Menu Links"</title>
			<link>http://en.forums.wordpress.com/topic/twenty-eleven-menu-links#post-1164335</link>
			<pubDate>Tue, 26 Feb 2013 17:13:44 +0000</pubDate>
			<dc:creator>authorsullivan</dc:creator>
			<guid isPermaLink="false">1164335@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I tried that, but it still didn't work. This is what I have in my CSS. Any ideas what's wrong? </p>
<p>#access {<br />
	background: #c9b89b;<br />
	text-align: center;<br />
	clear: both;<br />
	display: block;<br />
	float: left;<br />
	margin: 0 auto 6px;<br />
	width: 100%;<br />
}</p>
<p>#access ul {<br />
	font-size: 20px;<br />
	list-style: none;<br />
	margin: 0 0 0 -.8125em;<br />
	padding-left: 0;<br />
}</p>
<p>#access li {<br />
	float: left;<br />
	position: relative;<br />
}</p>
<p>#access a {<br />
	color: #000000;<br />
	display: block;<br />
	line-height: 3.333em;<br />
	padding: 0 1.2125em;<br />
	text-decoration: none;<br />
}</p>
<p>#access ul ul {<br />
	display: none;<br />
	float: left;<br />
	margin: 0;<br />
	position: absolute;<br />
	top: 3.333em;<br />
	left: 0;<br />
	width: 188px;<br />
	z-index: 99999;<br />
}</p>
<p>#access ul ul ul {<br />
	left: 100%;<br />
	top: 0;<br />
}</p>
<p>#access ul ul a {<br />
	background: #ffffff;<br />
	border-bottom: 1px dotted #000000;<br />
	color: #000000;<br />
	font-size: 18px;<br />
	font-weight: normal;<br />
	height: auto;<br />
	line-height: 1.8em;<br />
	padding: 10px;<br />
	width: 168px;<br />
}</p>
<p>#access li:hover &#62; a,<br />
#access ul ul :hover &#62; a,<br />
#access a:focus {<br />
	background: #ffffff;<br />
}</p>
<p>#access li:hover &#62; a,<br />
#access a:focus {<br />
	background: #ffffff;<br />
/* Older webkit syntax */<br />
	color: #000000;<br />
}</p>
<p>#access ul li:hover &#62; ul {<br />
	display: block;<br />
}</p>
<p>#access .current-menu-item &#62; a,<br />
#access .current-menu-ancestor &#62; a,<br />
#access .current_page_item &#62; a,<br />
#access .current_page_ancestor &#62; a {<br />
	font-weight: normal;<br />
}
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Twenty Eleven Menu Links"</title>
			<link>http://en.forums.wordpress.com/topic/twenty-eleven-menu-links#post-1164261</link>
			<pubDate>Tue, 26 Feb 2013 16:25:56 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1164261@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I went to Google search and used the following search string to find the answer for you:<br />
Twenty Eleven center menu site:en.forums.wordpress.com<br />
full results &#62; <a href="http://tinyurl.com/a8cavyj" rel="nofollow">http://tinyurl.com/a8cavyj</a></p>
<p>See <a href="http://en.forums.wordpress.com/topic/twenty-eleven-aligning-to-center-the-navigation-menu-css?replies=6" rel="nofollow">http://en.forums.wordpress.com/topic/twenty-eleven-aligning-to-center-the-navigation-menu-css?replies=6</a>
</p>
]]></description>
					</item>
		<item>
			<title>authorsullivan on "Twenty Eleven Menu Links"</title>
			<link>http://en.forums.wordpress.com/topic/twenty-eleven-menu-links#post-1164246</link>
			<pubDate>Tue, 26 Feb 2013 16:22:01 +0000</pubDate>
			<dc:creator>authorsullivan</dc:creator>
			<guid isPermaLink="false">1164246@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I'm using the Twenty Eleven theme and the menu links are set to the left side of the menu bar. Is there any way to center them? Thank you for your help.
</p>
]]></description>
					</item>

	</channel>
</rss>
