<?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: Need Help Centering Tagline in Blaskan Theme</title>
		<link>http://en.forums.wordpress.com/topic/need-help-centering-tagline-in-blaskan-theme</link>
		<description>WordPress.com Forums &#187; Topic: Need Help Centering Tagline in Blaskan Theme</description>
		<language>en</language>
		<pubDate>Sat, 25 May 2013 18:49:49 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/need-help-centering-tagline-in-blaskan-theme" rel="self" type="application/rss+xml" />

		<item>
			<title>zandyring on "Need Help Centering Tagline in Blaskan Theme"</title>
			<link>http://en.forums.wordpress.com/topic/need-help-centering-tagline-in-blaskan-theme#post-985013</link>
			<pubDate>Wed, 22 Aug 2012 20:23:43 +0000</pubDate>
			<dc:creator>zandyring</dc:creator>
			<guid isPermaLink="false">985013@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>And it looks nice - good work.
</p>
]]></description>
					</item>
		<item>
			<title>zandyring on "Need Help Centering Tagline in Blaskan Theme"</title>
			<link>http://en.forums.wordpress.com/topic/need-help-centering-tagline-in-blaskan-theme#post-985012</link>
			<pubDate>Wed, 22 Aug 2012 20:23:02 +0000</pubDate>
			<dc:creator>zandyring</dc:creator>
			<guid isPermaLink="false">985012@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're welcome! I really am happy to help. It's nice to solve problems!
</p>
]]></description>
					</item>
		<item>
			<title>cristycarringtonlewis on "Need Help Centering Tagline in Blaskan Theme"</title>
			<link>http://en.forums.wordpress.com/topic/need-help-centering-tagline-in-blaskan-theme#post-984974</link>
			<pubDate>Wed, 22 Aug 2012 20:00:22 +0000</pubDate>
			<dc:creator>cristycarringtonlewis</dc:creator>
			<guid isPermaLink="false">984974@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks so much! You are a genius. I've been fiddling with it all day. I liked your idea about doing the whole "border-left" think...it does look cleaner. I also increased the padding to 10. Again, thank you! You're a life saver!
</p>
]]></description>
					</item>
		<item>
			<title>zandyring on "Need Help Centering Tagline in Blaskan Theme"</title>
			<link>http://en.forums.wordpress.com/topic/need-help-centering-tagline-in-blaskan-theme#post-984960</link>
			<pubDate>Wed, 22 Aug 2012 19:47:46 +0000</pubDate>
			<dc:creator>zandyring</dc:creator>
			<guid isPermaLink="false">984960@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I went with the sidebar.</p>
<pre><code>.sidebars #primary, .sidebars #secondary, .content-wide-sidebar #primary {
    border: 1px dashed gray;
    padding: 5px;
    width: 250px;
}</code></pre>
<p>The border attribute is (surprise, surprise) the border - one pixel wide, dashed, grey. You can change all of these. As many pixels as you want (one seems to fit your overall look); I chose "dashed" for the sample code, but you can choose between it, dotted, and solid. You can define a hex value color instead of a predetermined shade (it would look like border: 1px dashed #0F0F0F; for example).</p>
<p>You can also change the border attribute to "border-left" and it will only show up on the left side of the sidebar, making it more like a dividing line. I would increase the padding (to 8px or higher). It's cleaner in my opinion, but whatever you ultimately choose will look fine.</p>
<p>Good luck!
</p>
]]></description>
					</item>
		<item>
			<title>cristycarringtonlewis on "Need Help Centering Tagline in Blaskan Theme"</title>
			<link>http://en.forums.wordpress.com/topic/need-help-centering-tagline-in-blaskan-theme#post-984901</link>
			<pubDate>Wed, 22 Aug 2012 19:11:43 +0000</pubDate>
			<dc:creator>cristycarringtonlewis</dc:creator>
			<guid isPermaLink="false">984901@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I finally figured it out. I did it this way:</p>
<p>#header-message {<br />
	text-align:center;<br />
	color:#000;<br />
}</p>
<p>Any ideas on how to put a border around either the widgets or the posts? There's nothing but some white space to separate the two.
</p>
]]></description>
					</item>
		<item>
			<title>zandyring on "Need Help Centering Tagline in Blaskan Theme"</title>
			<link>http://en.forums.wordpress.com/topic/need-help-centering-tagline-in-blaskan-theme#post-984384</link>
			<pubDate>Wed, 22 Aug 2012 12:23:08 +0000</pubDate>
			<dc:creator>zandyring</dc:creator>
			<guid isPermaLink="false">984384@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Since your blog is set to private, we can't check it out to figure out how to help. You can continue to tinker, search the forums to see if someone else had the same issue, or you can temporarily set your blog to public so we can help, and then set it to private again.</p>
<p>That said, I'm guessing your  tag line is set in a div with a CSS selector. Mine is #site-description, so I'll use that for my example.</p>
<p>You want to center the div, not just the text within the div, so set a width for your div (it may already have one; that's fine) and then set the left and right margins to "auto." Something like this:</p>
<pre><code>#site-description {
  width: 250px ;
  margin-left: auto ;
  margin-right: auto ;
}</code></pre>
<p>Good luck!
</p>
]]></description>
					</item>
		<item>
			<title>cristycarringtonlewis on "Need Help Centering Tagline in Blaskan Theme"</title>
			<link>http://en.forums.wordpress.com/topic/need-help-centering-tagline-in-blaskan-theme#post-984113</link>
			<pubDate>Wed, 22 Aug 2012 00:46:21 +0000</pubDate>
			<dc:creator>cristycarringtonlewis</dc:creator>
			<guid isPermaLink="false">984113@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I've managed to figure out how to center the header image and the site name using CSS, but I've tried multiple times to center the tagline and am having no luck. Can anyone provide assistance?
</p>
]]></description>
					</item>

	</channel>
</rss>
