<?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; User Favorites: devblog</title>
		<link>http://en.forums.wordpress.com/profile/</link>
		<description>WordPress.com Forums &#187; User Favorites: devblog</description>
		<language>en</language>
		<pubDate>Fri, 24 May 2013 01:52:42 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>hallluke on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-479812</link>
			<pubDate>Sat, 26 Jun 2010 10:24:01 +0000</pubDate>
			<dc:creator>hallluke</dc:creator>
			<guid isPermaLink="false">479812@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>It seems to work fine for me, but I haven't tried it on my site so maybe the CSS editor strips out the attribute selectors. Try saving the CSS changes rather than just previewing them.</p>
<p>You could use a categories widget which works locally for your blog only, the other links are global across all of wordpress and we can't change that.</p>
<p>lh
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478845</link>
			<pubDate>Wed, 23 Jun 2010 12:26:41 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478845@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>By the way, I noticed that the current "posted in..." -link doesn't work as I thought it would. For instance, when I click "posted in medium", it redirects to <a href="http://en.wordpress.com/tag/medium/" rel="nofollow">http://en.wordpress.com/tag/medium/</a>, while I thought it would link to <a href="http://pixelcounterrr.net/category/medium/" rel="nofollow">http://pixelcounterrr.net/category/medium/</a></p>
<p>Is there something I could do about it?</p>
<p>-Topi
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478844</link>
			<pubDate>Wed, 23 Jun 2010 12:21:02 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478844@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>That code removed for some reason only the word "and" from the footer, at least in the preview -mode. Is the footer removable entirely?</p>
<p>-Topi
</p>
]]></description>
					</item>
		<item>
			<title>hallluke on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478824</link>
			<pubDate>Wed, 23 Jun 2010 10:19:29 +0000</pubDate>
			<dc:creator>hallluke</dc:creator>
			<guid isPermaLink="false">478824@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>There may be an easier way but I'm not firing on all cylinders today. And thanks for the tip devblog!</p>
<pre><code>#footer p {visibility:hidden;}
#footer a {visibility:visible;}
#footer a[href$=&quot;comments/feed/&quot;] {display:none;}
#footer a[href$=&quot;feed/&quot;] {margin-left:3%;}</code></pre>
<p>lh
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478803</link>
			<pubDate>Wed, 23 Jun 2010 08:06:30 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478803@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Is there, by the way, a way to modify the footer, for instance to remove the "Comments (RSS)" -part, since I'm not allowing any commenting?
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478800</link>
			<pubDate>Wed, 23 Jun 2010 08:02:56 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478800@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks hallluke again! It boggles my mind how much code it takes to basically remove one character from the lay-out.</p>
<p>Take care,</p>
<p>-Topi
</p>
]]></description>
					</item>
		<item>
			<title>devblog on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478758</link>
			<pubDate>Wed, 23 Jun 2010 03:08:35 +0000</pubDate>
			<dc:creator>devblog</dc:creator>
			<guid isPermaLink="false">478758@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I would strongly recommend not to use "em" units for margins or paddings.  If you want "flexible" units, it's better to use "%".  "em" units are relative to the font size of the parent element; also, they are affected by the font size specified in the user's browser.  "%" units are relative to size of the parent element and are not affected by the font size specified in the user's browser.</p>
<p>Take a look at these samples (in all of them, the blue line shows the alignment on those elements whose margin was defined in "%" units, the green line is for those whose margin was defined in "em" units):</p>
<p>IE7 and font sizes set in browser were medium, larger, and largest</p>
<p><a href="http://csswiz.files.wordpress.com/2010/06/ie7.gif" rel="nofollow">http://csswiz.files.wordpress.com/2010/06/ie7.gif</a></p>
<p>Firefox 3.  (in browser) Font sizes were set to 16, 20, 26</p>
<p><a href="http://csswiz.files.wordpress.com/2010/06/fx3.gif" rel="nofollow">http://csswiz.files.wordpress.com/2010/06/fx3.gif</a></p>
<p>Opera 9.27.  (in browser) Font sizes were set to 16, 21, 26</p>
<p><a href="http://csswiz.files.wordpress.com/2010/06/op9-27.gif" rel="nofollow">http://csswiz.files.wordpress.com/2010/06/op9-27.gif</a></p>
<p>Safari 6.  (in browser) Font sizes were set to 16, 21, 26</p>
<p><a href="http://csswiz.files.wordpress.com/2010/06/sf5.gif" rel="nofollow">http://csswiz.files.wordpress.com/2010/06/sf5.gif</a></p>
<p>In all the examples, I'm using two fonts: Arial and Times New</p>
<p>The test page can be found here</p>
<p><a href="http://sandbox.coderlab.net/tests/text/fontest.html" rel="nofollow">http://sandbox.coderlab.net/tests/text/fontest.html</a></p>
<p>Just imagine, defining margins/padding in "em" units can produce undesired results in a layout if a user has set, in their browser, a font size different to the default one (which usually is 16).</p>
<p>Even though  "zooming" would  preserve the layout if margins/paddings are define in "em" units, it's always of good practice to keep in mind those users who would set a font size bigger than 16 just so they don't have to "zoom in" every time they read a blog/site whose font  is too small for them.
</p>
]]></description>
					</item>
		<item>
			<title>hallluke on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478730</link>
			<pubDate>Wed, 23 Jun 2010 00:05:08 +0000</pubDate>
			<dc:creator>hallluke</dc:creator>
			<guid isPermaLink="false">478730@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>It is possible to remove the vertical bar seperator. The method below isn't ideal as it uses CSS to add non-stylistic content to the page which isn't really the intended purpose.</p>
<pre><code>.postmetadata {visibility:hidden; position:relative; left:2.5em;}
.postmetadata a {visibility:visible; position:relative; left:-4.5em;}
.postmetadata:before {content:&quot;Posted in:&quot;; visibility:visible;}</code></pre>
<p>lh
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478616</link>
			<pubDate>Tue, 22 Jun 2010 17:01:05 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478616@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>^Horizontal one, I meant.
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478615</link>
			<pubDate>Tue, 22 Jun 2010 16:57:19 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478615@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Heh, I by the way totally misunderstood that "seperating verical bar" thing... I though you meant that vertical one, which I had purposely added by myself. English is not my first language.</p>
<p>-Topi
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478574</link>
			<pubDate>Tue, 22 Jun 2010 08:33:18 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">478574@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Whoa, that is slick!</p>
<p>Saved to my 'neat CSS tricks' file.
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478548</link>
			<pubDate>Tue, 22 Jun 2010 07:10:51 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478548@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks again hallluke.</p>
<p>That separating line was something I added manually to keep it more readable, but now with your code, I don't need it anymore.</p>
<p>Take care,</p>
<p>-Topi
</p>
]]></description>
					</item>
		<item>
			<title>hallluke on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478461</link>
			<pubDate>Mon, 21 Jun 2010 23:05:05 +0000</pubDate>
			<dc:creator>hallluke</dc:creator>
			<guid isPermaLink="false">478461@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You can keep the categories and remove just the comment link with:</p>
<p><code>.postmetadata a[href$=&quot;respond&quot;] {display:none;}</code></p>
<p>This is CSS3 so it won't work in IE versions before 7 but everything else should be fine. The only issue is that the seperating vertical bar still remains, probably not that much of an problem for you though.</p>
<p>lh
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478284</link>
			<pubDate>Mon, 21 Jun 2010 10:38:55 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478284@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks, I will use that, if there's absolutely no way to keep categories in tact.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478280</link>
			<pubDate>Mon, 21 Jun 2010 10:19:59 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">478280@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>That entire line is under .postmetadata. If you don't mind losing the categories as well, you can do this:</p>
<pre><code>.postmetadata {
display: none;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478274</link>
			<pubDate>Mon, 21 Jun 2010 09:50:32 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478274@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I'd like to ask one more question related to removing things.</p>
<p>Is it possible to remove "leave a comment" link from the bottom of every post?
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478156</link>
			<pubDate>Sun, 20 Jun 2010 21:59:30 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478156@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks, now I got it!
</p>
]]></description>
					</item>
		<item>
			<title>panaghiotisadam on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478133</link>
			<pubDate>Sun, 20 Jun 2010 20:35:15 +0000</pubDate>
			<dc:creator>panaghiotisadam</dc:creator>
			<guid isPermaLink="false">478133@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>See here:<br />
<a href="http://wpbtips.wordpress.com/2009/09/28/the-no-widgets-paradox/" rel="nofollow">http://wpbtips.wordpress.com/2009/09/28/the-no-widgets-paradox/</a>
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478131</link>
			<pubDate>Sun, 20 Jun 2010 20:33:07 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478131@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have my current sidebar empty, so I can't take anything away that way.
</p>
]]></description>
					</item>
		<item>
			<title>webesters on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478122</link>
			<pubDate>Sun, 20 Jun 2010 19:55:47 +0000</pubDate>
			<dc:creator>webesters</dc:creator>
			<guid isPermaLink="false">478122@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You can achieve it by changing your sidebar widgets. Go to Widgets under Appearance tab and Drag and Drop items which you want to show to the Sidebar Box and remove the options from the same box which you don't want.</p>
<p>Thank you<br />
webesters
</p>
]]></description>
					</item>
		<item>
			<title>pixelcounter on "Removing items from the menu"</title>
			<link>http://en.forums.wordpress.com/topic/removing-items-from-the-menu#post-478107</link>
			<pubDate>Sun, 20 Jun 2010 19:25:29 +0000</pubDate>
			<dc:creator>pixelcounter</dc:creator>
			<guid isPermaLink="false">478107@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hello again.</p>
<p>I was wondering if it's possible to remove some items from the Kubrik -theme's menu, like this:</p>
<p><a href="http://dl.dropbox.com/u/2312669/goal2.jpg" rel="nofollow">http://dl.dropbox.com/u/2312669/goal2.jpg</a></p>
<p>I know I'm pushing my luck since I got earlier today such great help from the community, but this would be really the finishing touch for my blog.</p>
<p>Best regards,</p>
<p>-Topi
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Where is CSS stylesheet for Vigilance"</title>
			<link>http://en.forums.wordpress.com/topic/where-is-css-stylesheet-for-vigilance#post-471961</link>
			<pubDate>Fri, 04 Jun 2010 00:48:28 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">471961@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>@Sandra<br />
Inuit Types &#62; <a href="http://svn.automattic.com/wpcom-themes/inuit-types/" rel="nofollow">http://svn.automattic.com/wpcom-themes/inuit-types/</a>
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Where is CSS stylesheet for Vigilance"</title>
			<link>http://en.forums.wordpress.com/topic/where-is-css-stylesheet-for-vigilance#post-471958</link>
			<pubDate>Fri, 04 Jun 2010 00:46:02 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">471958@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>@Sandra<br />
If you want the identical version to the theme versions here at wordpress.com they can be downloaded from here &#62;  <a href="https://wpcom-themes.svn.automattic.com/" rel="nofollow">https://wpcom-themes.svn.automattic.com/</a>
</p>
]]></description>
					</item>
		<item>
			<title>sandrapawula on "Where is CSS stylesheet for Vigilance"</title>
			<link>http://en.forums.wordpress.com/topic/where-is-css-stylesheet-for-vigilance#post-471956</link>
			<pubDate>Fri, 04 Jun 2010 00:43:58 +0000</pubDate>
			<dc:creator>sandrapawula</dc:creator>
			<guid isPermaLink="false">471956@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Very helpful to have this link!  Thank you.
</p>
]]></description>
					</item>
		<item>
			<title>windwhistle on "Where is CSS stylesheet for Vigilance"</title>
			<link>http://en.forums.wordpress.com/topic/where-is-css-stylesheet-for-vigilance#post-471838</link>
			<pubDate>Thu, 03 Jun 2010 19:37:53 +0000</pubDate>
			<dc:creator>windwhistle</dc:creator>
			<guid isPermaLink="false">471838@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you. I've bookmarked the location in case I need the same info for other themes.
</p>
]]></description>
					</item>
		<item>
			<title>hewsut on "Where is CSS stylesheet for Vigilance"</title>
			<link>http://en.forums.wordpress.com/topic/where-is-css-stylesheet-for-vigilance#post-471822</link>
			<pubDate>Thu, 03 Jun 2010 18:42:56 +0000</pubDate>
			<dc:creator>hewsut</dc:creator>
			<guid isPermaLink="false">471822@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi there,</p>
<p>You can see the entire theme (including all the CSS stylesheets) right here:<br />
<a href="http://svn.automattic.com/wpcom-themes/vigilance/" rel="nofollow">http://svn.automattic.com/wpcom-themes/vigilance/</a>
</p>
]]></description>
					</item>
		<item>
			<title>windwhistle on "Where is CSS stylesheet for Vigilance"</title>
			<link>http://en.forums.wordpress.com/topic/where-is-css-stylesheet-for-vigilance#post-471817</link>
			<pubDate>Thu, 03 Jun 2010 18:35:04 +0000</pubDate>
			<dc:creator>windwhistle</dc:creator>
			<guid isPermaLink="false">471817@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The Vigilance theme doesn't seem to show the complete original CSS stylesheet. It looks like some sort of abbreviated form, with some comments (below) about importing the stylesheet. I'm at a loss as to how to make changes if I don't have the full stylesheet to work with. Where/how do I see the full CSS?</p>
<p>/* Import Stylesheets<br />
-----------------------------------------------------------*/<br />
@import url("stylesheets/master.css");<br />
/* @import url("functions/stylesheets/style-options.php"); */<br />
/* Can't import a PHP file on WordPress.com, so it's loaded via functions.php instead. */</p>
<p>/* Required WordPress Classes, don't remove these.<br />
-----------------------------------------------------------*/
</p>
]]></description>
					</item>
		<item>
			<title>2ndecho on "Definition of mature"</title>
			<link>http://en.forums.wordpress.com/topic/definition-of-mature#post-468079</link>
			<pubDate>Tue, 25 May 2010 04:36:05 +0000</pubDate>
			<dc:creator>2ndecho</dc:creator>
			<guid isPermaLink="false">468079@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you, Mark. That does answer my question. The other threads didn't. But this one did.
</p>
]]></description>
					</item>
		<item>
			<title>raincoaster on "Definition of mature"</title>
			<link>http://en.forums.wordpress.com/topic/definition-of-mature#post-467859</link>
			<pubDate>Mon, 24 May 2010 16:49:15 +0000</pubDate>
			<dc:creator>raincoaster</dc:creator>
			<guid isPermaLink="false">467859@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Yes, we know. But Mark said if you have further questions (and mine has not been asked before) to ask them here.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Definition of mature"</title>
			<link>http://en.forums.wordpress.com/topic/definition-of-mature#post-467847</link>
			<pubDate>Mon, 24 May 2010 16:34:56 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">467847@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>There are also many threads in the searchbox on this subject.<br />
Search string: definition mature site:en.forums.wordpress.com<br />
Search results: <a href="http://tinyurl.com/34o5cea" rel="nofollow">http://tinyurl.com/34o5cea</a></p>
<p>The related support documentation entry is here &#62; <a href="http://en.support.wordpress.com/report-blogs/" rel="nofollow">http://en.support.wordpress.com/report-blogs/</a>
</p>
]]></description>
					</item>

	</channel>
</rss>
