<?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: site title the columnist</title>
		<link>http://en.forums.wordpress.com/topic/site-title-the-columnist</link>
		<description>WordPress.com Forums &#187; Topic: site title the columnist</description>
		<language>en</language>
		<pubDate>Thu, 23 May 2013 02:04:21 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/site-title-the-columnist" rel="self" type="application/rss+xml" />

		<item>
			<title>designsimply on "site title the columnist"</title>
			<link>http://en.forums.wordpress.com/topic/site-title-the-columnist#post-1174481</link>
			<pubDate>Fri, 08 Mar 2013 13:00:17 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1174481@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>the last question is.... how can i reduce the size of title, remove the line under the title and reduce the space between title and tagline, when i enter in the single page...</p></blockquote>
<p>That sounds like three questions. :)</p>
<p>Regarding the size of the font title, try using the size values for the site title on the Appearance &#8594; Custom Design &#8594; Fonts page first. Once you have selected any fonts on that page, very specific CSS is used to setup the rules for the site. To override them with custom CSS after that, you can use the "!important" rule:</p>
<pre><code>.site-title h1,
.single-title h1 {
	font-size: 22px !important;
}</code></pre>
<p>Here is some CSS for The Columnist theme that will help you hide the border under titles on single posts:</p>
<pre><code>.single-title h1 {
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}</code></pre>
<p>Now, you have some CSS already saved in your CSS editor that is similar. You should remove those and combine everything for matching rules into one block like this:</p>
<pre><code>.site-title h1,
.single-title h1 {
	border: none;
	font-size: 22px !important;
	margin-bottom: 0;
	padding-bottom: 0;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>tecnimpresasrl on "site title the columnist"</title>
			<link>http://en.forums.wordpress.com/topic/site-title-the-columnist#post-1174402</link>
			<pubDate>Fri, 08 Mar 2013 10:15:30 +0000</pubDate>
			<dc:creator>tecnimpresasrl</dc:creator>
			<guid isPermaLink="false">1174402@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>thank you so much.... the first option that you write is perfect....</p>
<p>the last question is.... how can i reduce the size of title,  remove the line under the  title and reduce the space between  title and tagline, when i enter in the single page....</p>
<p>best,
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "site title the columnist"</title>
			<link>http://en.forums.wordpress.com/topic/site-title-the-columnist#post-1171418</link>
			<pubDate>Tue, 05 Mar 2013 23:35:07 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1171418@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>how can I add another column to the layout?</p></blockquote>
<p>You can't really add dynamic content using CSS only, but sometimes what you can do is shift things around. Here is an example that would expand the main content area enough so that there is enough room for 5 posts to get stacked (floated left) in a row before they fall over to the next row:</p>
<pre><code>#main,
#main:after,
.site-footer {
    width: 100%;
}
#content {
	float: left;
	width: 800px;
}</code></pre>
<p>Try it out to see how it works, and experiment with the width values.</p>
<p>Another trick you can do is add a temporary border to the main content area and then preview so that you can get a better idea for how the layout works:</p>
<pre><code>#content {
	border: 1px solid red;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>tecnimpresasrl on "site title the columnist"</title>
			<link>http://en.forums.wordpress.com/topic/site-title-the-columnist#post-1171138</link>
			<pubDate>Tue, 05 Mar 2013 20:12:09 +0000</pubDate>
			<dc:creator>tecnimpresasrl</dc:creator>
			<guid isPermaLink="false">1171138@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you so much!!!!!<br />
just like trying to do.....</p>
<p>i have another question...<br />
how can I add another column to the layout?</p>
<p>thanks in advance.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "site title the columnist"</title>
			<link>http://en.forums.wordpress.com/topic/site-title-the-columnist#post-1170646</link>
			<pubDate>Tue, 05 Mar 2013 15:24:01 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1170646@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>reduce the space between site title and tagline</p></blockquote>
<p>Add this to your Appearance &#8594; Custom Design &#8594; CSS editor:</p>
<pre><code>.site-title h1 {
	margin-bottom: 0;
	padding-bottom: 0;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "site title the columnist"</title>
			<link>http://en.forums.wordpress.com/topic/site-title-the-columnist#post-1170644</link>
			<pubDate>Tue, 05 Mar 2013 15:22:10 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1170644@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>remove the line under the site title</p></blockquote>
<p>Add this to your Appearance &#8594; Custom Design &#8594; CSS editor:</p>
<pre><code>.site-title h1 {
	border: none;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "site title the columnist"</title>
			<link>http://en.forums.wordpress.com/topic/site-title-the-columnist#post-1170643</link>
			<pubDate>Tue, 05 Mar 2013 15:21:13 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1170643@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>I need to reduce the font size of site title</p></blockquote>
<p>Try adjusting that from the Appearance &#8594; Custom Design &#8594; Fonts page.
</p>
]]></description>
					</item>
		<item>
			<title>tecnimpresasrl on "site title the columnist"</title>
			<link>http://en.forums.wordpress.com/topic/site-title-the-columnist#post-1168845</link>
			<pubDate>Sun, 03 Mar 2013 20:45:56 +0000</pubDate>
			<dc:creator>tecnimpresasrl</dc:creator>
			<guid isPermaLink="false">1168845@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi! I need help about a sidebar.<br />
I need to reduce the font size of site title, remove the line under the site title and reduce the space between site title and tagline...<br />
can anyone help me?</p>
<p>thanks.
</p>
]]></description>
					</item>

	</channel>
</rss>
