<?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: Appearance Questions</title>
		<link>http://en.forums.wordpress.com/topic/appearance-questions</link>
		<description>WordPress.com Forums &#187; Topic: Appearance Questions</description>
		<language>en</language>
		<pubDate>Tue, 21 May 2013 09:47:03 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/appearance-questions" rel="self" type="application/rss+xml" />

		<item>
			<title>designsimply on "Appearance Questions"</title>
			<link>http://en.forums.wordpress.com/topic/appearance-questions#post-1091904</link>
			<pubDate>Tue, 11 Dec 2012 03:02:49 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1091904@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>@missrachelwit, please <a href="http://en.forums.wordpress.com/forum/css-customization/#postform">start a new help request</a> and make sure to include a link to your WordPress.com blog.
</p>
]]></description>
					</item>
		<item>
			<title>missrachelwit on "Appearance Questions"</title>
			<link>http://en.forums.wordpress.com/topic/appearance-questions#post-1058604</link>
			<pubDate>Fri, 02 Nov 2012 20:13:51 +0000</pubDate>
			<dc:creator>missrachelwit</dc:creator>
			<guid isPermaLink="false">1058604@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>How do I move my header text to the right side of the screen?
</p>
]]></description>
					</item>
		<item>
			<title>justjennifer on "Appearance Questions"</title>
			<link>http://en.forums.wordpress.com/topic/appearance-questions#post-1038982</link>
			<pubDate>Sat, 13 Oct 2012 10:19:53 +0000</pubDate>
			<dc:creator>justjennifer</dc:creator>
			<guid isPermaLink="false">1038982@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>3. Also can I create an image gallary on a widget? I was able to create the image gallary in my post, but I want my sidebar to have a ongoing slide show of images.</p></blockquote>
<p>You can't use the WordPress.com Slideshow in a widget, but you can put selected thumbnail images from your site in a sidebar by using a Text widget, the Gallery shortcode and "includes" with the Image ID number. To see an example of this in action, check out the sidebar on any individual post on my photography site (no sidebar on the front page with the theme I'm using).
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Appearance Questions"</title>
			<link>http://en.forums.wordpress.com/topic/appearance-questions#post-1038356</link>
			<pubDate>Fri, 12 Oct 2012 16:58:10 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1038356@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>4. Is there a way to only have my profile picture show up under my Home Page and not on every page?</p></blockquote>
<p>If you use your profile image in your header (the answer to #1 above), then you could limit it to just your home page by adding ".home" to the CSS selector like this:</p>
<pre><code>.home #branding hgroup {
	background: url(http://1.gravatar.com/avatar/d7efe9da41c104e5328029c5a2366613?s=128&amp;d=identicon&amp;r=G) right no-repeat;
	padding-right: 140px;
}</code></pre>
<p>For the Gravatar widget, I see you already figured out something similar by using the following CSS. Nice work!</p>
<pre><code>.widget_gravatar {
	display:none;
}

.home .widget_gravatar {
	display:block;
}</code></pre>
<blockquote><p>Can I control different widgets for different pages?</p></blockquote>
<p>There aren't any built in settings to do this, but you can work around it by using CSS selectors like ".home" just like you did for your Gravatar widget.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Appearance Questions"</title>
			<link>http://en.forums.wordpress.com/topic/appearance-questions#post-1038355</link>
			<pubDate>Fri, 12 Oct 2012 16:54:19 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1038355@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>3. Also can I create an image gallary on a widget? I was able to create the image gallary in my post, but I want my sidebar to have a ongoing slide show of images.</p></blockquote>
<p>There isn't an image gallery widget available right now, but check out this reply for some options:<br />
<a href="http://en.forums.wordpress.com/topic/image-slider-2?replies=4#post-1037730" rel="nofollow">http://en.forums.wordpress.com/topic/image-slider-2?replies=4#post-1037730</a>
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Appearance Questions"</title>
			<link>http://en.forums.wordpress.com/topic/appearance-questions#post-1038354</link>
			<pubDate>Fri, 12 Oct 2012 16:52:24 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1038354@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>2. How can I change the font size on my Tag line. I have paid for the upgrade custom and I was able to change the font size for my header but I can't figure out how to change the size on my Tag line.</p></blockquote>
<p>Here is an example. It includes changing the text shadow so it looks a little better than what comes with the larger site description font size.</p>
<pre><code>#site-description {
	font-size: 20px;
	text-shadow: -1px -1px 2px black;
}</code></pre>
<p>You can change the numbers until it looks good to you.</p>
<p>Note that if you want to make the description line wrap, one way would be to adjust the padding-right value from the last example I sent about putting an image in the header. Try changing that to 340px to see how you might update it.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Appearance Questions"</title>
			<link>http://en.forums.wordpress.com/topic/appearance-questions#post-1038350</link>
			<pubDate>Fri, 12 Oct 2012 16:48:50 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1038350@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>1. Can I add my profile picture and/or my logo on my header? A small size on the right or left hand corner?</p></blockquote>
<p>Here is an example showing how to add an image to the right side of the header in the Matala theme:</p>
<pre><code>#branding hgroup {
	background: url(http://1.gravatar.com/avatar/d7efe9da41c104e5328029c5a2366613?s=128&amp;d=identicon&amp;r=G) right no-repeat;
	padding-right: 140px;
}</code></pre>
<p>To customize it, change out the image link and the padding to fit your image.
</p>
]]></description>
					</item>
		<item>
			<title>spicemedley1 on "Appearance Questions"</title>
			<link>http://en.forums.wordpress.com/topic/appearance-questions#post-1026944</link>
			<pubDate>Mon, 01 Oct 2012 14:52:31 +0000</pubDate>
			<dc:creator>spicemedley1</dc:creator>
			<guid isPermaLink="false">1026944@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi! Please help me with the following questions;<br />
1. Can I add my profile picture and/or my logo on my header?  A small size on the right or left hand corner?</p>
<p>2.  How can I change the font size on my Tag line.  I have paid for the upgrade custom and I was able to change the font size for my header but I can't figure out how to change the size on my Tag line.</p>
<p>3. Also can I create an image gallary on a widget?  I was able to create the image gallary in my post, but I want my sidebar to have a ongoing slide show of images.</p>
<p>4. Is there a way to only have my profile picture show up under my Home Page and not on every page.  Can I control different widgets for different pages?<br />
Thanks for all your help in advance.<br />
Blog url: <a href='http://spicemedleydotcom.wordpress.com/'>http://spicemedleydotcom.wordpress.com/</a>
</p>
]]></description>
					</item>

	</channel>
</rss>
