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

		<item>
			<title>designsimply on "Need CSS help for changing themes, but approximating appearance of the old one.."</title>
			<link>http://en.forums.wordpress.com/topic/need-css-help-for-changing-themes-but-approximating-appearance-of-the-old-one#post-1215495</link>
			<pubDate>Tue, 09 Apr 2013 12:10:29 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1215495@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>3) change font colors</p></blockquote>
<p>I would recommend experimenting with whole color palettes first—you can find that in Appearance -&#62; Themes -&#62; Customize -&#62; Colors.</p>
<p>To target individual text colors, you need to create CSS rules to override ones in the theme. There could be many. You can use the built in web inspector to find them. Here are a few basic ones:</p>
<p>To change the base text color, you can update the color for the "body" tag:</p>
<pre><code>body {
	color: hotpink;
}</code></pre>
<p>That should affect any text that doesn't have a more specific color rule in the theme's CSS.</p>
<p>To adjust link colors, you can do something like this:</p>
<pre><code>a {
	color: blue;
}
a:visited {
	color: purple;
}
a:hover,
a:focus,
a:active {
	color: green;
}</code></pre>
<p>But that won't affect post titles on the home page because there are more specific rules in the theme for those particular colors. Here is an example that will change the color, visited color, and hover color for post titles on the home page:</p>
<pre><code>.entry-title a,
.entry-title a {
	color: brown;
}
.entry-title a:visited,
.entry-title a:visited {
	color: teal;
}
.hentry:hover .entry-title a,
.hentry:hover .entry-title a:hover {
	color: gold;
}</code></pre>
<p>Other font colors may also need specific rules added to adjust theme depending on what text you add and what rules exist in the theme to affect that text. You can adjust the font color further as you add more content. Use your browser's web inspector to find what CSS selectors to use to adjust more colors.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Need CSS help for changing themes, but approximating appearance of the old one.."</title>
			<link>http://en.forums.wordpress.com/topic/need-css-help-for-changing-themes-but-approximating-appearance-of-the-old-one#post-1215478</link>
			<pubDate>Tue, 09 Apr 2013 11:49:10 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1215478@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>2) reposition content so header image to be fully displayed similiar to the way it was on the old theme</p></blockquote>
<p>With this one, I think you're breaking out of the Sidekick setup completely—it has a built in setup to do a header image that is 480 x 150 pixels. What you can do is bypass that completely and add a background image to one of the header elements using CSS. Here is a basic example that just adds in the background image. You should add these to the "#masthead hgroup" selector that is already in your custom CSS from the last example:</p>
<pre><code>background: url(&quot;http://havekniveswillcooktestsite.files.wordpress.com/2013/03/logo-2010-03-razorclams.jpg&quot;) no-repeat;
	height: 235px;</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "Need CSS help for changing themes, but approximating appearance of the old one.."</title>
			<link>http://en.forums.wordpress.com/topic/need-css-help-for-changing-themes-but-approximating-appearance-of-the-old-one#post-1215476</link>
			<pubDate>Tue, 09 Apr 2013 11:43:13 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1215476@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>What I can do is help by giving you some starting points. Pay attention to the selectors because those are what you can use to add further changes. If you want a basic refresher on CSS in general, this is a good tutorial:<br />
<a href="http://www.htmldog.com/guides/cssbeginner/" rel="nofollow">http://www.htmldog.com/guides/cssbeginner/</a></p>
<p>To find which selectors to use, I right-clicked on the things on the page I wanted to find out more about, selected "Inspect Element," and used the browser's built in web inspector to browse the HTML on the left and all of the CSS that applies to whatever is selected on the right. It's the most useful thing you can possibly do when working with a theme's existing CSS.</p>
<blockquote><p>1) change the menu to full width, single line </p></blockquote>
<p>To make the menu full width in the Sidekick theme, try setting the width for the area that contains the site title as well as the menu to 100%. Here is an example to get you started:</p>
<pre><code>#masthead hgroup {
	width: 100%;
}
.main-navigation {
	width: 100%;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>aymagrup on "Need CSS help for changing themes, but approximating appearance of the old one.."</title>
			<link>http://en.forums.wordpress.com/topic/need-css-help-for-changing-themes-but-approximating-appearance-of-the-old-one#post-1194929</link>
			<pubDate>Mon, 25 Mar 2013 23:09:51 +0000</pubDate>
			<dc:creator>aymagrup</dc:creator>
			<guid isPermaLink="false">1194929@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I am currently using fadtastic with some css customizations.  It has been a long time since i edited them and don't remember what i did.  I want to change to a theme shows multiple posts on the home page (which fadtastic to my understanding cannot do without changes to the original theme itself).  I like the way the sidekick theme looks and am trying it out on a test site <a href="http://havekniveswillcooktestsite.wordpress.com/" rel="nofollow">http://havekniveswillcooktestsite.wordpress.com/</a></p>
<p>If possibIe, I want to 1) change the menu to full width, single line  and 2) reposition content so header image to be fully displayed similiar to the way it was on the old theme and 3) change font colors </p>
<p>thanks for any help.
</p>
]]></description>
					</item>
		<item>
			<title>therealroryo on "Moving the menu to the top of the page"</title>
			<link>http://en.forums.wordpress.com/topic/moving-the-menu-to-the-top-of-the-page#post-1173933</link>
			<pubDate>Thu, 07 Mar 2013 22:21:23 +0000</pubDate>
			<dc:creator>therealroryo</dc:creator>
			<guid isPermaLink="false">1173933@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks designsimply! I decided not to fix the menu for this layout, but I will definitely keep this info handy for next time!
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "CSS: Move private post password field"</title>
			<link>http://en.forums.wordpress.com/topic/css-move-private-post-password-field#post-1173648</link>
			<pubDate>Thu, 07 Mar 2013 18:56:01 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1173648@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>It appears you were unable to send an example link for this issue. I'm going to mark this topic as resolved since there haven't been any additional replies in over two weeks. If you still need help, please reply back with a link to a password-protected post and set the topic status to "not resolved." Note that CSS is theme specific, and so confirming an example URL helps make it so an answer can be tested on a live example.</p>
<p>If you'd prefer to research CSS positioning on your own, you might find these links useful:<br />
<a href="http://alistapart.com/article/css-positioning-101" rel="nofollow">http://alistapart.com/article/css-positioning-101</a><br />
<a href="http://css-tricks.com/video-screencasts/110-quick-overview-of-css-position-values/" rel="nofollow">http://css-tricks.com/video-screencasts/110-quick-overview-of-css-position-values/</a>
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1159342</link>
			<pubDate>Thu, 21 Feb 2013 21:52:19 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1159342@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Wonderful got it, thank you again so much for all your help!</p>
<p>- Beverly
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1159327</link>
			<pubDate>Thu, 21 Feb 2013 21:45:40 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1159327@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You'll need to center them manually by adding "left" to the "#text-2" block. Something like: </p>
<pre><code>#text-2 {
	position: absolute;
	left: 100px;
	top: 430px;
	z-index: 9;
}</code></pre>
<p>Adjust the value until it looks right.
</p>
]]></description>
					</item>
		<item>
			<title>magicandmedicine1 on "Displaying a logo alongside title and text at top of page"</title>
			<link>http://en.forums.wordpress.com/topic/displaying-a-logo-alongside-title-and-text-at-top-of-page#post-1158818</link>
			<pubDate>Thu, 21 Feb 2013 11:13:32 +0000</pubDate>
			<dc:creator>magicandmedicine1</dc:creator>
			<guid isPermaLink="false">1158818@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi justpi, </p>
<p>thanks for letting me know that it is possible to redisplay the logo. It's useful too that you think it looks okay where it is -  always good to get a second opinion. I think I'll leave it where it is for now and if the client wants something different I'll have a go at applying a negative margin to it. </p>
<p>Thanks too for your tips re use of images, I think these ones look okay, but will bear in mind for future.
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1158670</link>
			<pubDate>Thu, 21 Feb 2013 04:20:17 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1158670@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>It worked thank you so much! :) Just need to figure out how to center and space them now!
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1158548</link>
			<pubDate>Wed, 20 Feb 2013 23:50:17 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1158548@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>actually when i move them to the top they become unclickable..
</p></blockquote>
<p>Tricky! This took me a while to figure out!</p>
<p>Try adding "z-index: 9" to the "#text-2" block. Here's an updated example:</p>
<pre><code>#supplementary {
	position: static;
}
#main {
	position: relative;
}
#text-2 {
	position: absolute;
	top: 430px;
	z-index: 9;
}
.site-navigation {
	margin-top: 60px;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>justpi on "Displaying a logo alongside title and text at top of page"</title>
			<link>http://en.forums.wordpress.com/topic/displaying-a-logo-alongside-title-and-text-at-top-of-page#post-1157052</link>
			<pubDate>Tue, 19 Feb 2013 13:20:20 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1157052@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You can reposition the logo in various ways. One way would be to apply a negative top margin to it (and this is possible even without the upgrade). But I don't think it would look better where you want it.</p>
<p>As for the horizontal alignment, there's a more general issue: your content has flexible width but the header doesn't. Drag the browser window to make it narrower and see what happens.</p>
<p>By the way:<br />
a) There's no point making a logo link to the full-size original.<br />
b) You get better quality on the page if you use an image editing application to downsize images to the desired pixel dimensions instead of relying on WP for the downsizing.
</p>
]]></description>
					</item>
		<item>
			<title>magicandmedicine1 on "Displaying a logo alongside title and text at top of page"</title>
			<link>http://en.forums.wordpress.com/topic/displaying-a-logo-alongside-title-and-text-at-top-of-page#post-1156951</link>
			<pubDate>Tue, 19 Feb 2013 09:38:06 +0000</pubDate>
			<dc:creator>magicandmedicine1</dc:creator>
			<guid isPermaLink="false">1156951@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi lymetrail</p>
<p>Thanks for your reply. Thanks too for showing me the screen shot, I've not used firebug before but it looks like a useful tool. I suspected that it probably was not possible. After a bit of tinkering I think that the logo looks good enough. </p>
<p>Thanks again.
</p>
]]></description>
					</item>
		<item>
			<title>lymetrail on "Displaying a logo alongside title and text at top of page"</title>
			<link>http://en.forums.wordpress.com/topic/displaying-a-logo-alongside-title-and-text-at-top-of-page#post-1156515</link>
			<pubDate>Mon, 18 Feb 2013 22:51:05 +0000</pubDate>
			<dc:creator>lymetrail</dc:creator>
			<guid isPermaLink="false">1156515@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi - When I look at the page with Firebug it looks like that graphic is aligned to the right and top of the "entry-content" as it is, you won't be able to move it up.<br />
See this screen shot to see what I mean:<br />
<a href="http://lymetrailassociation.files.wordpress.com/2013/02/screen-shot-2013-02-18-at-5-47-29-pm.png">SCREEN SHOT</a></p>
<p>The blue highlighted line shows "entry-content" area!  Sorry I am not more help but I am no way an expert, hopefully one will shout out!
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "CSS: Move private post password field"</title>
			<link>http://en.forums.wordpress.com/topic/css-move-private-post-password-field#post-1156478</link>
			<pubDate>Mon, 18 Feb 2013 22:21:52 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1156478@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>@philipecr, do you still need help? Can you post where we can see the password field you're referring to?
</p>
]]></description>
					</item>
		<item>
			<title>magicandmedicine1 on "Displaying a logo alongside title and text at top of page"</title>
			<link>http://en.forums.wordpress.com/topic/displaying-a-logo-alongside-title-and-text-at-top-of-page#post-1156397</link>
			<pubDate>Mon, 18 Feb 2013 21:26:24 +0000</pubDate>
			<dc:creator>magicandmedicine1</dc:creator>
			<guid isPermaLink="false">1156397@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi there </p>
<p>I'm trying to position the 'Breathe' logo on this page: <a href="http://thackraymagicandmedicine.wordpress.com/collaborations/therapy/" rel="nofollow">http://thackraymagicandmedicine.wordpress.com/collaborations/therapy/</a> a little higher up, in line with 'Therapy' and 'Breathe Magic - Integrating Magic into Rehabilitation' and sitting directly underneath the Arts Council logo. I think the reason this may be difficult is that 'Therapy' as the title probably has padding going across to the other side preventing anything from being put there. Is there anyway around this with the use of css code/code in the text editor? It's important I don't affect the layout of other pages, but this page will be a static page. </p>
<p>Thanks for your help
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Moving the menu to the top of the page"</title>
			<link>http://en.forums.wordpress.com/topic/moving-the-menu-to-the-top-of-the-page#post-1155947</link>
			<pubDate>Mon, 18 Feb 2013 15:28:48 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1155947@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>Is there a way to have the location of the menu bar change depending on whether a person is logged in to wordpress?</p></blockquote>
<p>There is! You can use the body classes to target each one:</p>
<p><code>.logged-in</code></p>
<p>So you might try adding something like this to the bottom of your custom CSS in the Appearance &#8594; Custom Design &#8594; CSS editor:</p>
<pre><code>.logged-in #access,
.logged-in #wrapper {
	padding-top: 28px;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1153761</link>
			<pubDate>Fri, 15 Feb 2013 20:44:42 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1153761@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Anyone have any clue why they are not clickable? When i put the same code as above in my about me section they work...
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "position of float"</title>
			<link>http://en.forums.wordpress.com/topic/position-of-float#post-1153126</link>
			<pubDate>Fri, 15 Feb 2013 01:02:12 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1153126@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>a) Sorry, I forgot that Coraline has flexible width. You can make the text blocks remain approximately in the same areas in relation to the shrinking image if you express the horizontal positioning and the widths in percentages. But the narrower they become, the <em>longer</em> they'll become, so the #navigation3 text might flow past the bottom of the monitor sketch. So you need to use a fixed-width theme (or turn the width of Coraline to fixed).</p>
<p>b) If you turn everything into an image, you can create links by using image mapping. You can generate the code here:<br />
<a href="http://www.isdntek.com/tagbot/imap.htm" rel="nofollow">http://www.isdntek.com/tagbot/imap.htm</a><br />
Again you need a fixed-width theme.
</p>
]]></description>
					</item>
		<item>
			<title>brinded on "position of float"</title>
			<link>http://en.forums.wordpress.com/topic/position-of-float#post-1152820</link>
			<pubDate>Thu, 14 Feb 2013 17:46:51 +0000</pubDate>
			<dc:creator>brinded</dc:creator>
			<guid isPermaLink="false">1152820@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>justpi,</p>
<p>Great advice - thank you again. (bg image now on page, positioning absolute and pixel defined.)</p>
<p>Having achieved my initial objectives, I've now encountered a new problem! </p>
<p>Specifically, I failed to anticipate that text would shift whenever window is re-sized (which of course is desired, predictable behaviour - and no doubt obvious to all seasoned designers).</p>
<p>What I'd like to achieve is text that stays nailed to the underlying image.</p>
<p>Any suggestions?</p>
<p>ps I'm still considering your advice (posted elsewhere) to photshop the text onto the image, but then how would I make hyperlinks?
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1152700</link>
			<pubDate>Thu, 14 Feb 2013 14:49:22 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1152700@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks. So let me try this again. </p>
<p>I input what was suggested above :<br />
#supplementary {<br />
	position: static;<br />
}<br />
#main {<br />
	position: relative;<br />
}<br />
#text-2 {<br />
	position: absolute;<br />
	top: 430px;<br />
}<br />
.site-navigation {<br />
	margin-top: 60px;<br />
}</p>
<p>This did work and moved my buttons to the top between my header and Menu. But once I move them they become un clickable. This is the widget text code I am using.</p>
<p><code> &lt;div class=&quot;textwidget&quot;&gt;&lt;a href=&quot;http://pinterest.com/pinninggals/&quot;&gt;&lt;img src=&quot;http://pinninggals.files.wordpress.com/2013/02/pinterest.png&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Follow Me on Pinterest&quot; /&gt;&lt;/a&gt;</code><code></code>
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1152426</link>
			<pubDate>Thu, 14 Feb 2013 05:03:58 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1152426@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>To get code to show in the forums, enclose the code in code tags like below.</p>
<p><code>&lt;code&gt;all the code here&lt;/code&gt;</code></p>
<p>Alternately you can put the code in and then select all the code and click the code button above the entry box.</p>
<p>That will keep the forum software from interpreting it.
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1152415</link>
			<pubDate>Thu, 14 Feb 2013 04:33:22 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1152415@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>i give up its stressing me out way too much.. now i cant figure out how to get the code to all display in here ...lol
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1152414</link>
			<pubDate>Thu, 14 Feb 2013 04:32:33 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1152414@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>(&#60;div class="textwidget"&#62;<a href="http://pinterest.com/pinninggals/">&#60;img src="http://pinninggals.files.wordpress.com/2013/02/pinterest.png" width="60" height="60" alt="Follow Me on Pinterest" /&#62;</a> )
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1152411</link>
			<pubDate>Thu, 14 Feb 2013 04:26:47 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1152411@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>this is the widget text code im using if it helps</p>
<p>&#60;div class="textwidget"&#62;<a href="http://pinterest.com/pinninggals/">&#60;img src="http://pinninggals.files.wordpress.com/2013/02/pinterest.png" width="60" height="60" alt="Follow Me on Pinterest" /&#62;</a>
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1152410</link>
			<pubDate>Thu, 14 Feb 2013 04:16:29 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1152410@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>actually when i move them to the top they become unclickable..
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1152392</link>
			<pubDate>Thu, 14 Feb 2013 03:36:53 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1152392@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Got it thanks figured out how you told me to do it and its working!
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1151945</link>
			<pubDate>Wed, 13 Feb 2013 16:45:56 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1151945@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>sorry just me again *sigh* after searching online I am trying to add the following code under the css custom design but its doing nothing...</p>
<p>#header_icons img {    </p>
<p>    float:right;</p>
<p>    height:32px;</p>
<p>    width:32px;</p>
<p>    margin:0;</p>
<p>    margin-right:10px;</p>
<p>}</p>
<p>#header_icons {</p>
<p>    float: right;</p>
<p>    padding-top:50px;</p>
<p>    width:250px;</p>
<p>    z-index:-9999;</p>
<p>    padding-bottom:10px;</p>
<p>}<br />
div id=”header_icons”&#62;</p>
<p><a href="//www.pinterest.com/pinninggals”"><br />
&#60;img src=”http://pinninggals.com/?attachment_id=193” width=”40px”&#62;</a></p>
<p><a href="//www.facebook.com/pinninggals”"><br />
&#60;img src=”http://pinninggals.com/?attachment_id=194” width=”40px”&#62;</a></p>
<p><a href="//twitter.com/pinninggals”"><br />
&#60;img src=”http://pinninggals.com/?attachment_id=195 ” width=”40px”&#62;</a></p>
<p><a href="[email redacted]”"><br />
&#60;img src=”http://pinninggals.com/?attachment_id=196 ” width=”40px”&#62;</a></p>
<p>&#60;/div&#62;
</p>
]]></description>
					</item>
		<item>
			<title>bevypoo on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1151916</link>
			<pubDate>Wed, 13 Feb 2013 16:03:52 +0000</pubDate>
			<dc:creator>bevypoo</dc:creator>
			<guid isPermaLink="false">1151916@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you. I will give it a try I'm completely new to this and just learning so it all intimidates me a bit :)</p>
<p>So if I input the code above into the css it should do what im trying to?
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Social Media Plugins below header image"</title>
			<link>http://en.forums.wordpress.com/topic/social-media-plugins-below-header-image#post-1151895</link>
			<pubDate>Wed, 13 Feb 2013 15:44:22 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1151895@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You can use absolute positioning to move widgets around on a page. First, you need to view your page source to find out the ID value for the widget you'd like to target. I looked at <a href="http://pinninggals.com/" rel="nofollow">http://pinninggals.com/</a> and I found that the widget with the Pinterest logo in it has an ID value of "text-2". Here is an example of some CSS that will take that specific widget out of the footer and stick it to the top of the page. The last rule makes some space above the top navigation to give the moved widget some space. This should get you started, and note that you can adjust the numbers or add widths and centering to the CSS blocks as needed.</p>
<pre><code>#supplementary {
	position: static;
}
#main {
	position: relative;
}
#text-2 {
	position: absolute;
	top: 430px;
}
.site-navigation {
	margin-top: 60px;
}</code></pre>
<p>Note: this example assumes your site has the same header height throughout.
</p>
]]></description>
					</item>

	</channel>
</rss>
