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

		<item>
			<title>designsimply on "Getting rid of widget borders and heading border of Forever Theme by Automaticc"</title>
			<link>http://en.forums.wordpress.com/topic/getting-rid-of-widget-borders-and-heading-border-of-forever-theme-by-automaticc#post-1117148</link>
			<pubDate>Wed, 09 Jan 2013 14:38:36 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1117148@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>To remove borders from the header image as well as images in the widgets in the Forever theme, add this to your Appearance &#8594; Custom Design &#8594; CSS editor:</p>
<pre><code>#masthead img,
.widget img {
	border: 0;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>heartmamaxx on "Getting rid of widget borders and heading border of Forever Theme by Automaticc"</title>
			<link>http://en.forums.wordpress.com/topic/getting-rid-of-widget-borders-and-heading-border-of-forever-theme-by-automaticc#post-1111929</link>
			<pubDate>Fri, 04 Jan 2013 10:33:43 +0000</pubDate>
			<dc:creator>heartmamaxx</dc:creator>
			<guid isPermaLink="false">1111929@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi, Can someone please tell me how I can get rid of widget borders and header border of Forever theme by Automaticc?</p>
<p>Thanks
</p>
]]></description>
					</item>
		<item>
			<title>thestudentandthemonk on "Blogum theme customization ("</title>
			<link>http://en.forums.wordpress.com/topic/blogum-theme-customization#post-1058631</link>
			<pubDate>Fri, 02 Nov 2012 20:34:05 +0000</pubDate>
			<dc:creator>thestudentandthemonk</dc:creator>
			<guid isPermaLink="false">1058631@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You are simply a star! Of course I'll post 1 question a at a time from now on, and again, you are a star! Thank you!
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Blogum theme customization ("</title>
			<link>http://en.forums.wordpress.com/topic/blogum-theme-customization#post-1057106</link>
			<pubDate>Thu, 01 Nov 2012 14:46:47 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1057106@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>5) Getting rid of white lines shown between share section and below it too.</p></blockquote>
<p>The share and likes section below single posts in the Blogum theme have  thin gray borders by default. Here is an example showing how to remove those borders:</p>
<pre><code>.post-content div.sharedaddy div.sd-block {
	border-top: none;
}

body.single .post-content div.sharedaddy,
body.page .post-content div.sharedaddy {
	border-bottom: none;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "Blogum theme customization ("</title>
			<link>http://en.forums.wordpress.com/topic/blogum-theme-customization#post-1057104</link>
			<pubDate>Thu, 01 Nov 2012 14:43:49 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1057104@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>4) Aligning left hand side menu to the right.</p></blockquote>
<p>What you see on the left hand side is nor really a side menu, it's the post title and meta data and it's part of each post itself. You can change the float to move it to the right side of the posts instead of the left. Here is an example:</p>
<pre><code>.post-meta {
	float: right;
	padding-left: 1em;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "Blogum theme customization ("</title>
			<link>http://en.forums.wordpress.com/topic/blogum-theme-customization#post-1057098</link>
			<pubDate>Thu, 01 Nov 2012 14:36:22 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1057098@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>3) Modifying font, size and color of right hand side menu, widgets sidebar menu.</p></blockquote>
<p>Try the Appearance &#8594; Custom Design &#8594; Fonts options first. If that doesn't help, post a new help request and we can look at something more specific.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Blogum theme customization ("</title>
			<link>http://en.forums.wordpress.com/topic/blogum-theme-customization#post-1057097</link>
			<pubDate>Thu, 01 Nov 2012 14:35:28 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1057097@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>2) Getting rid of lines below right hand side menu, widgets sidebar menu.</p></blockquote>
<p>This will remove the top borders from all of the widgets on the right side of the Blogum theme:</p>
<pre><code>.widget {
	border-top: none;
}</code></pre>
<p>If you wanted to add a border back to the top of all of the right sidebar widgets, add this:</p>
<pre><code>.sidebar {
	border-top: 1px solid #E9E9E9;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "Blogum theme customization ("</title>
			<link>http://en.forums.wordpress.com/topic/blogum-theme-customization#post-1057091</link>
			<pubDate>Thu, 01 Nov 2012 14:32:23 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1057091@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>1) Moving the 1st, 2nd and 3rd columns to the right (e.g. by pixels from left of browser)</p></blockquote>
<p>You can control that by changing the margin for the main wrapper element in Blogum. Here is an example:</p>
<pre><code>.wrapper {
    margin: 0 0 0 200px;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "Blogum theme customization ("</title>
			<link>http://en.forums.wordpress.com/topic/blogum-theme-customization#post-1057088</link>
			<pubDate>Thu, 01 Nov 2012 14:31:41 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1057088@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi! Welcome to our forum! In the future, would you mind please asking each question in a separate help request unless they're really really similar questions? It helps with searches later, keeps things organized, and makes it easier to help. Cheers :)
</p>
]]></description>
					</item>
		<item>
			<title>thestudentandthemonk on "Blogum theme customization ("</title>
			<link>http://en.forums.wordpress.com/topic/blogum-theme-customization#post-1053172</link>
			<pubDate>Sun, 28 Oct 2012 00:46:18 +0000</pubDate>
			<dc:creator>thestudentandthemonk</dc:creator>
			<guid isPermaLink="false">1053172@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi,</p>
<p>I would greatly appreciate if someone could tell me the necessary CSS codes for modifying the following from <a href="http://eyesblinkpictures.wordpress.com" rel="nofollow">http://eyesblinkpictures.wordpress.com</a>:</p>
<p>1)  Moving the 1st, 2nd and 3rd columns to the right (e.g. by pixels from left of browser)<br />
2) Getting rid of lines below right hand side menu, widgets sidebar menu.<br />
3) Modifying font, size and color of right hand side menu, widgets sidebar menu.<br />
4) Aligning left hand side menu to the right.<br />
5) Getting rid of white lines shown between share section and below it too.</p>
<p>It be great if it can be done through Custom design CSS.<br />
Many thanks in advanced.<br />
Tomas
</p>
]]></description>
					</item>
		<item>
			<title>panaghiotisadam on "Widget/sidebar borders"</title>
			<link>http://en.forums.wordpress.com/topic/widgetsidebar-borders#post-431306</link>
			<pubDate>Wed, 10 Feb 2010 10:24:18 +0000</pubDate>
			<dc:creator>panaghiotisadam</dc:creator>
			<guid isPermaLink="false">431306@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>(Theme was Contempt; OP switched to k2.)
</p>
]]></description>
					</item>
		<item>
			<title>joesoaptruths on "Widget/sidebar borders"</title>
			<link>http://en.forums.wordpress.com/topic/widgetsidebar-borders#post-431283</link>
			<pubDate>Wed, 10 Feb 2010 07:17:55 +0000</pubDate>
			<dc:creator>joesoaptruths</dc:creator>
			<guid isPermaLink="false">431283@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you all, I think I'm sorted now
</p>
]]></description>
					</item>
		<item>
			<title>panaghiotisadam on "Widget/sidebar borders"</title>
			<link>http://en.forums.wordpress.com/topic/widgetsidebar-borders#post-431038</link>
			<pubDate>Tue, 09 Feb 2010 20:28:09 +0000</pubDate>
			<dc:creator>panaghiotisadam</dc:creator>
			<guid isPermaLink="false">431038@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The Image widget doesn't work well in the theme you're using. Use a text widget instead.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Widget/sidebar borders"</title>
			<link>http://en.forums.wordpress.com/topic/widgetsidebar-borders#post-430983</link>
			<pubDate>Tue, 09 Feb 2010 17:56:09 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">430983@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>typo above I meant to type  "IE8" above ^
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Widget/sidebar borders"</title>
			<link>http://en.forums.wordpress.com/topic/widgetsidebar-borders#post-430982</link>
			<pubDate>Tue, 09 Feb 2010 17:55:25 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">430982@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>That's interesting because I just used TE8 for the second time and see no problem at all. Please try these techniques and then report back what you see: <a href="http://en.support.wordpress.com/browser-issues/" rel="nofollow">http://en.support.wordpress.com/browser-issues/</a>
</p>
]]></description>
					</item>
		<item>
			<title>joesoaptruths on "Widget/sidebar borders"</title>
			<link>http://en.forums.wordpress.com/topic/widgetsidebar-borders#post-430964</link>
			<pubDate>Tue, 09 Feb 2010 17:11:09 +0000</pubDate>
			<dc:creator>joesoaptruths</dc:creator>
			<guid isPermaLink="false">430964@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I use internet explorer 8.0.60001.18882
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Widget/sidebar borders"</title>
			<link>http://en.forums.wordpress.com/topic/widgetsidebar-borders#post-430957</link>
			<pubDate>Tue, 09 Feb 2010 16:52:58 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">430957@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>It's likewise presenting a normal appearance in IE8. These are the browser usage stats <a href="http://www.w3schools.com/browsers/browsers_stats.asp" rel="nofollow">http://www.w3schools.com/browsers/browsers_stats.asp</a>
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Widget/sidebar borders"</title>
			<link>http://en.forums.wordpress.com/topic/widgetsidebar-borders#post-430955</link>
			<pubDate>Tue, 09 Feb 2010 16:48:32 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">430955@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The appearance of the subscription widget in Firefox 3.5.7 is "normal". Which browser and version of it are you using to view your blog please?
</p>
]]></description>
					</item>
		<item>
			<title>joesoaptruths on "Widget/sidebar borders"</title>
			<link>http://en.forums.wordpress.com/topic/widgetsidebar-borders#post-430950</link>
			<pubDate>Tue, 09 Feb 2010 16:42:56 +0000</pubDate>
			<dc:creator>joesoaptruths</dc:creator>
			<guid isPermaLink="false">430950@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I activated a widget enabling someone to e-mail me (with an envelope image). It is working, but the sidebar border for this widget is "cut-off on the right. Can someone help?
</p>
]]></description>
					</item>

	</channel>
</rss>
