<?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: Removing image and banner borders in the Bueno theme &amp; Page heading titles</title>
		<link>http://en.forums.wordpress.com/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles</link>
		<description>WordPress.com Forums &#187; Topic: Removing image and banner borders in the Bueno theme &amp; Page heading titles</description>
		<language>en</language>
		<pubDate>Wed, 22 May 2013 06:32:11 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles" rel="self" type="application/rss+xml" />

		<item>
			<title>brokeartist on "Removing image and banner borders in the Bueno theme &amp; Page heading titles"</title>
			<link>http://en.forums.wordpress.com/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles#post-1037114</link>
			<pubDate>Thu, 11 Oct 2012 02:26:17 +0000</pubDate>
			<dc:creator>brokeartist</dc:creator>
			<guid isPermaLink="false">1037114@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I'm having the same problem with the pink frames around images.</p>
<p>I understand that code is supposed to go somewhere, but where?</p>
<p>here's the page I'm having a problem with: <a href="http://brokeartist.wordpress.com/wp-admin/post.php?post=1016&#038;action=edit&#038;message=1" rel="nofollow">http://brokeartist.wordpress.com/wp-admin/post.php?post=1016&#038;action=edit&#038;message=1</a></p>
<p>There is a pink frame around the tent symbol and I really don't want it there.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Removing image and banner borders in the Bueno theme &amp; Page heading titles"</title>
			<link>http://en.forums.wordpress.com/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles#post-1023636</link>
			<pubDate>Thu, 27 Sep 2012 15:04:45 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1023636@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>Also how can I add a link to my homepage to my banner image?</p></blockquote>
<p>You cannot add a link using CSS only, but you can repurpose a link from somewhere else and lay it over the top of the header image. For example, here is an example that takes the home tab from the top menu and uses it for the header image link instead:</p>
<pre><code>#pagenav ul .b a {
	border-bottom: none;
	margin: 0;
	padding: 0;
	display: block;
	position: absolute;
	left: 0;
	top: 85px;
	width: 930px;
	height: 198px;
	text-indent: -9999px;
}</code></pre>
<p>* This example is specific to your current blog setup, a change in the menu or another setting or using a different nav element for the link would require some adjustments. This should give you a good starting point and you can fidget with the code until it works how you want.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Removing image and banner borders in the Bueno theme &amp; Page heading titles"</title>
			<link>http://en.forums.wordpress.com/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles#post-1023627</link>
			<pubDate>Thu, 27 Sep 2012 14:46:47 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1023627@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>2. How can I remove the (pink) borders that automatically form around the images I upload?</p></blockquote>
<p>To remove borders from images in post and page content areas:</p>
<pre><code>.entry img {
	border: none;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "Removing image and banner borders in the Bueno theme &amp; Page heading titles"</title>
			<link>http://en.forums.wordpress.com/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles#post-1023622</link>
			<pubDate>Thu, 27 Sep 2012 14:45:37 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1023622@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>1. How can I remove the border around the banner image?</p></blockquote>
<pre><code>#header-image img {
	border: none;
}</code></pre>
<p>(I'm posting this one to try to make sure all the questions in the forum have answers posted as well.)
</p>
]]></description>
					</item>
		<item>
			<title>houstonweaver on "Removing image and banner borders in the Bueno theme &amp; Page heading titles"</title>
			<link>http://en.forums.wordpress.com/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles#post-1012555</link>
			<pubDate>Sun, 16 Sep 2012 14:47:23 +0000</pubDate>
			<dc:creator>houstonweaver</dc:creator>
			<guid isPermaLink="false">1012555@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I think on number 3 you can add this to your CSS (but I am not at a computer where I can check it)</p>
<p><code>.title {display:none;}</code><br />
(this will move other elements up into the space }</p>
<p><code>.title {visibility:hidden;}</code><br />
(this just hides it but it continues to take up space)</p>
<p>Caveat: these will hide the title element wherever it may occur, so be alert to that potential ramification.
</p>
]]></description>
					</item>
		<item>
			<title>pixiwishes on "Removing image and banner borders in the Bueno theme &amp; Page heading titles"</title>
			<link>http://en.forums.wordpress.com/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles#post-1012514</link>
			<pubDate>Sun, 16 Sep 2012 13:41:40 +0000</pubDate>
			<dc:creator>pixiwishes</dc:creator>
			<guid isPermaLink="false">1012514@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I figured out number 1 so please disregard that one :)
</p>
]]></description>
					</item>
		<item>
			<title>pixiwishes on "Removing image and banner borders in the Bueno theme &amp; Page heading titles"</title>
			<link>http://en.forums.wordpress.com/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles#post-1012268</link>
			<pubDate>Sun, 16 Sep 2012 05:58:37 +0000</pubDate>
			<dc:creator>pixiwishes</dc:creator>
			<guid isPermaLink="false">1012268@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Also how can I add a link to my homepage to my banner image?
</p>
]]></description>
					</item>
		<item>
			<title>pixiwishes on "Removing image and banner borders in the Bueno theme &amp; Page heading titles"</title>
			<link>http://en.forums.wordpress.com/topic/removing-image-and-banner-borders-in-the-bueno-theme-page-heading-titles#post-1012265</link>
			<pubDate>Sun, 16 Sep 2012 05:57:14 +0000</pubDate>
			<dc:creator>pixiwishes</dc:creator>
			<guid isPermaLink="false">1012265@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have a few questions regarding customising my blog. I use the Bueno theme.<br />
It's for my blog: <a href="http://pixiwishesforeheadkisses.wordpress.com/" rel="nofollow">http://pixiwishesforeheadkisses.wordpress.com/</a></p>
<p>1. How can I remove the border around the banner image?<br />
2. How can I remove the (pink) borders that automatically form around the images I upload?<br />
3. How can I remove the titles on the pages without getting rid of the navigation bar. Example: The Word "Recipes" on this page: <a href="http://pixiwishesforeheadkisses.wordpress.com/my-recipes/" rel="nofollow">http://pixiwishesforeheadkisses.wordpress.com/my-recipes/</a></p>
<p>Thank you.
</p>
]]></description>
					</item>

	</channel>
</rss>
