<?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; Tag: twenty ten - Recent Posts</title>
		<link>http://en.forums.wordpress.com/tags/twenty-ten</link>
		<description>WordPress.com Forums &#187; Tag: twenty ten - Recent Posts</description>
		<language>en</language>
		<pubDate>Wed, 22 May 2013 12:28:38 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/tags/twenty-ten" rel="self" type="application/rss+xml" />

		<item>
			<title>arb34 on "color of a widget heading"</title>
			<link>http://en.forums.wordpress.com/topic/color-of-a-widget-heading#post-1273461</link>
			<pubDate>Tue, 21 May 2013 10:47:31 +0000</pubDate>
			<dc:creator>arb34</dc:creator>
			<guid isPermaLink="false">1273461@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you! That worked. I learned a very small amount of CSS when I created my blog a few years ago, and I now forget everything. I appreciate your help. -Amy
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "color of a widget heading"</title>
			<link>http://en.forums.wordpress.com/topic/color-of-a-widget-heading#post-1272716</link>
			<pubDate>Mon, 20 May 2013 19:54:17 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1272716@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're using a few rules like this:</p>
<pre><code>ul.xoxo li#twitter-3 h3 a {
	color: #080
}</code></pre>
<p>And that is very specific, so it only applies to list containers with a class of "xoxo" and list items with an id of "twitter-3" followed by an h3 heading that is a link. That particular block of CSS doesn't actually affect any of the widget titles on your blog at the moment because none of the titles are links.</p>
<p>If you use something more general like this instead:</p>
<pre><code>.widget-title {
	color: #080;
}</code></pre>
<p>It will cover all your current link titles. If you were to add a widget in the future that has a title that is also a link, this would probably cover both types of titles:</p>
<pre><code>.widget-title,
.widget-title a {
	color: #080;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>arb34 on "color of a widget heading"</title>
			<link>http://en.forums.wordpress.com/topic/color-of-a-widget-heading#post-1271609</link>
			<pubDate>Sun, 19 May 2013 23:53:07 +0000</pubDate>
			<dc:creator>arb34</dc:creator>
			<guid isPermaLink="false">1271609@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The headings of all of my widgets should be (and used to be) green. Now, the heading of one of my widgets -- the tag cloud widget -- is black instead of green. I am not sure what's up. It has been awhile since I wrote this code to make the headings green:</p>
<p>ul.xoxo li#wp_tag_cloud div a {<br />
text-decoration:none;<br />
}</p>
<p>ul.xoxo li#wp_tag_cloud h3 {<br />
color:#008800;<br />
}</p>
<p>Can you figure out what's up?</p>
<p>Thank you for your help!<br />
Amy
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1270142</link>
			<pubDate>Sat, 18 May 2013 03:32:38 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1270142@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You are welcome.
</p>
]]></description>
					</item>
		<item>
			<title>lindalind on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1270006</link>
			<pubDate>Fri, 17 May 2013 23:18:06 +0000</pubDate>
			<dc:creator>lindalind</dc:creator>
			<guid isPermaLink="false">1270006@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Great thank you so much for all your help! I will make a new header that is 940px :)
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1268655</link>
			<pubDate>Fri, 17 May 2013 00:14:55 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1268655@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The width on your site looks good now at 940px, except for the header image, which is 1024px in width. You can upload a new header image at 940px wide, or alternately you can add the following CSS to take care of the issue.</p>
<pre><code>#header {
overflow: hidden;
}</code></pre>
<p>All it does is tell the browser to ignore the extra width on the header image.
</p>
]]></description>
					</item>
		<item>
			<title>lindalind on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1268640</link>
			<pubDate>Thu, 16 May 2013 23:59:47 +0000</pubDate>
			<dc:creator>lindalind</dc:creator>
			<guid isPermaLink="false">1268640@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you so much! I did what you wrote and it finally looks good again.<br />
I have one last question if I may ask. My site can now scroll slightly to the right and back when I look at it on a laptop. It didn't use to be like that and I was wondering if you know how I can change it back so that you can only scroll up and down. Once again thank you so much for your help!
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1268243</link>
			<pubDate>Thu, 16 May 2013 20:01:12 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1268243@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I do notice that there are some inconsistencies in the widths you have set, but I don't know if that is an issue or not.</p>
<p>Change the width in #access back to 940px to match the parent div widths.</p>
<p>I would also suggest redoing your custom header image and make it 940px wide. Right now it is 1024px wide and that might cause some issues although I'm not sure.</p>
<p>Lastly you need to make the standard theme and WordPress stuff in the footer visible. We are not allowed to hide the WordPress and theme credits here at WordPress.com.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1268222</link>
			<pubDate>Thu, 16 May 2013 19:49:47 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1268222@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Since your site is not a responsive theme design, you need the mobile active.</p>
<p>You might try deselecting the</p>
<blockquote><p>On Mobile<br />
Include this CSS in the Mobile Theme</p></blockquote>
<p>It will mean the mobile goes back to the standard mobile design, but it would be readable.</p>
<p>The alternate would be to turn off the mobile entirely and then just let people view the full site.</p>
<p>I'm not sure what is messing up the mobile theme as I've never worked with CSS and those themes before.
</p>
]]></description>
					</item>
		<item>
			<title>lindalind on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1267936</link>
			<pubDate>Thu, 16 May 2013 17:24:07 +0000</pubDate>
			<dc:creator>lindalind</dc:creator>
			<guid isPermaLink="false">1267936@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi! Yes both of those are selected... should I deselect them?
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1267347</link>
			<pubDate>Thu, 16 May 2013 07:09:52 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1267347@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Also, do you have the mobile theme activated at appearance &#62; mobile?
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1267346</link>
			<pubDate>Thu, 16 May 2013 07:07:46 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1267346@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Linda, if you go to appearance &#62; custom design &#62; edit CSS, do you have this selected?</p>
<blockquote><p>On Mobile<br />
Include this CSS in the Mobile Theme
</p></blockquote>
]]></description>
					</item>
		<item>
			<title>lindalind on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1267342</link>
			<pubDate>Thu, 16 May 2013 07:00:28 +0000</pubDate>
			<dc:creator>lindalind</dc:creator>
			<guid isPermaLink="false">1267342@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>ok thanks. I was just trying to change the width of the side widget area a little bit and make the post area a little bigger so that I could have bigger pictures. I don't know why it got shifted to the right on some browsers. I'm not very good at CSS so if you have any idea how I can change this back I would really appreciate it.
</p>
]]></description>
					</item>
		<item>
			<title>raincoaster on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1267337</link>
			<pubDate>Thu, 16 May 2013 06:52:06 +0000</pubDate>
			<dc:creator>raincoaster</dc:creator>
			<guid isPermaLink="false">1267337@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Then I'll flag this to move into the CSS forum instead. When you do custom design, you DO have to account for different browsers, and that includes mobile ones.
</p>
]]></description>
					</item>
		<item>
			<title>lindalind on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1267316</link>
			<pubDate>Thu, 16 May 2013 06:14:05 +0000</pubDate>
			<dc:creator>lindalind</dc:creator>
			<guid isPermaLink="false">1267316@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>yes!
</p>
]]></description>
					</item>
		<item>
			<title>raincoaster on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1266004</link>
			<pubDate>Wed, 15 May 2013 06:46:13 +0000</pubDate>
			<dc:creator>raincoaster</dc:creator>
			<guid isPermaLink="false">1266004@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Are you using the Custom Design upgrade?
</p>
]]></description>
					</item>
		<item>
			<title>lindalind on "blog looks messed up on smartphone"</title>
			<link>http://en.forums.wordpress.com/topic/blog-looks-messed-up-on-smartphone#post-1265999</link>
			<pubDate>Wed, 15 May 2013 06:37:56 +0000</pubDate>
			<dc:creator>lindalind</dc:creator>
			<guid isPermaLink="false">1265999@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I just changed the design on my wordpress.com blog and it looks great on a computer but on my iPhone everything looks messed up. It seems like the whole website is pushed to the right so I can only see a tiny bit of my images etc. What can I do to fix this? The url is <a href="http://www.LindaLind.com/blog" rel="nofollow">http://www.LindaLind.com/blog</a>
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Content Backgrounds"</title>
			<link>http://en.forums.wordpress.com/topic/content-backgrounds#post-1265675</link>
			<pubDate>Tue, 14 May 2013 21:01:57 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1265675@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You can use the "background" property in CSS to add a background image to something. To do it, you must figure out what selector to use to target exactly which thing you want to add the background on. For example, to add a background image to the wrapper element for the main content area in the Twenty Tent theme, you could do something like this:</p>
<pre><code>#wrapper {
	background: #fff url(&quot;http://s.wordpress.org/about/images/wordpress-logo-notext-bg.png&quot;) center center;
}</code></pre>
<p>Change the url() value to an image link from your blog's <a href="http://en.support.wordpress.com/images/#upload-images-from-your-computer">media library</a>.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Replacing title with customised logo (Twenty Ten theme)"</title>
			<link>http://en.forums.wordpress.com/topic/replacing-title-with-customised-logo-twenty-ten-theme#post-1263718</link>
			<pubDate>Sun, 12 May 2013 23:28:05 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1263718@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You are welcome, and thanks.
</p>
]]></description>
					</item>
		<item>
			<title>emmaleroux on "Replacing title with customised logo (Twenty Ten theme)"</title>
			<link>http://en.forums.wordpress.com/topic/replacing-title-with-customised-logo-twenty-ten-theme#post-1263578</link>
			<pubDate>Sun, 12 May 2013 20:37:07 +0000</pubDate>
			<dc:creator>emmaleroux</dc:creator>
			<guid isPermaLink="false">1263578@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're a legend! Thanks so much! Looks awesome.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Replacing title with customised logo (Twenty Ten theme)"</title>
			<link>http://en.forums.wordpress.com/topic/replacing-title-with-customised-logo-twenty-ten-theme#post-1263544</link>
			<pubDate>Sun, 12 May 2013 20:02:40 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1263544@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>In the dashboard of the blog, go to appearance &#62; custom design and click on the edit button in the CSS module. In the text area that opens up, paste the above code and you can preview it to the left. If it looks good, click the "save" button at lower right.
</p>
]]></description>
					</item>
		<item>
			<title>emmaleroux on "Replacing title with customised logo (Twenty Ten theme)"</title>
			<link>http://en.forums.wordpress.com/topic/replacing-title-with-customised-logo-twenty-ten-theme#post-1263476</link>
			<pubDate>Sun, 12 May 2013 18:52:05 +0000</pubDate>
			<dc:creator>emmaleroux</dc:creator>
			<guid isPermaLink="false">1263476@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks! I'm using Chrome as a browser and I've right clicked the header title and selected 'Inspect element'. I can see the code. I'm not sure where to insert the code you've given me. Can you let me know? As I said, I'm a novice!
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Replacing title with customised logo (Twenty Ten theme)"</title>
			<link>http://en.forums.wordpress.com/topic/replacing-title-with-customised-logo-twenty-ten-theme#post-1263419</link>
			<pubDate>Sun, 12 May 2013 17:07:37 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1263419@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Give this a try and see what you think.</p>
<pre><code>#site-title {
    background: url(&quot;http://immunoaddotcom.files.wordpress.com/2013/05/immuno-ad-logo-live-website.jpg&quot;) no-repeat scroll left top transparent;
    display: block;
    line-height: 100px;
    text-indent: -9999px;
    width: 314px;
}

#site-title a {
    display: block;
}

#site-description {
    padding-top: 60px;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>emmaleroux on "Replacing title with customised logo (Twenty Ten theme)"</title>
			<link>http://en.forums.wordpress.com/topic/replacing-title-with-customised-logo-twenty-ten-theme#post-1263309</link>
			<pubDate>Sun, 12 May 2013 13:30:28 +0000</pubDate>
			<dc:creator>emmaleroux</dc:creator>
			<guid isPermaLink="false">1263309@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have a customised logo that I need to insert on the blog instead of the title. I want to keep the tagline. I've resized the image so that it is 100px high. The URL to the image in the media library is <a href="http://wp.me/a3biyG-1E" rel="nofollow">http://wp.me/a3biyG-1E</a>.<br />
I am new to coding (i.e. complete novice!) so would really appreciate any help with this.<br />
Thanks
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Remove the grey background from the sticky post"</title>
			<link>http://en.forums.wordpress.com/topic/remove-the-grey-background-from-the-sticky-post#post-1262069</link>
			<pubDate>Fri, 10 May 2013 22:11:19 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1262069@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Go to appearance &#62; custom design in your dashboard, click on the "edit" button in the CSS module at the right and paste the code above into the text area there and then you can preview the change to your theme. If it does what you  want, then click the "save" button at lower right on the customize page.
</p>
]]></description>
					</item>
		<item>
			<title>aliceharding on "Remove the grey background from the sticky post"</title>
			<link>http://en.forums.wordpress.com/topic/remove-the-grey-background-from-the-sticky-post#post-1261753</link>
			<pubDate>Fri, 10 May 2013 17:27:57 +0000</pubDate>
			<dc:creator>aliceharding</dc:creator>
			<guid isPermaLink="false">1261753@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Whoop I also should have said I am not sure where that command should go, but presumably at the beginning in the post itself?
</p>
]]></description>
					</item>
		<item>
			<title>aliceharding on "Remove the grey background from the sticky post"</title>
			<link>http://en.forums.wordpress.com/topic/remove-the-grey-background-from-the-sticky-post#post-1261750</link>
			<pubDate>Fri, 10 May 2013 17:26:34 +0000</pubDate>
			<dc:creator>aliceharding</dc:creator>
			<guid isPermaLink="false">1261750@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>That answer doesn't seem to work, most probably because I don't understand it.  </p>
<p>I do know a little about html and have used it from time to time in ebay templates and so on, but I don't know enough to understand any form of shorthand or workarounds and need to have something that I can just cut and paste.</p>
<p>I don't understand what .home and .sticky mean.</p>
<p>Thanks.
</p>
]]></description>
					</item>
		<item>
			<title>aliceharding on "Remove the grey background from the sticky post"</title>
			<link>http://en.forums.wordpress.com/topic/remove-the-grey-background-from-the-sticky-post#post-1261448</link>
			<pubDate>Fri, 10 May 2013 09:40:59 +0000</pubDate>
			<dc:creator>aliceharding</dc:creator>
			<guid isPermaLink="false">1261448@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you.  I didn't even know there was a CSS forum.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Remove the grey background from the sticky post"</title>
			<link>http://en.forums.wordpress.com/topic/remove-the-grey-background-from-the-sticky-post#post-1261202</link>
			<pubDate>Thu, 09 May 2013 23:52:03 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1261202@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi, this should do it for you.</p>
<pre><code>.home .sticky {
background-color: #FFFFFF;
}</code></pre>
<p>For CSS related questions, if you could post in the CSS forum in the future it will typically get you a quicker reply since that is where the volunteers answering CSS questions typically look. I've tagged this to have it moved to the CSS forum. Thanks.
</p>
]]></description>
					</item>
		<item>
			<title>aliceharding on "Remove the grey background from the sticky post"</title>
			<link>http://en.forums.wordpress.com/topic/remove-the-grey-background-from-the-sticky-post#post-1261191</link>
			<pubDate>Thu, 09 May 2013 23:13:41 +0000</pubDate>
			<dc:creator>aliceharding</dc:creator>
			<guid isPermaLink="false">1261191@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Bump.
</p>
]]></description>
					</item>

	</channel>
</rss>
