<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: line under social buttons</title>
		<link>http://www.kriesi.at/support/topic/line-under-social-buttons</link>
		<description>Support Forum - Topic: line under social buttons</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 10:06:25 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/line-under-social-buttons" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "line under social buttons"</title>
			<link>http://www.kriesi.at/support/topic/line-under-social-buttons#post-22400</link>
			<pubDate>Sun, 10 Jul 2011 01:16:12 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">22400@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey, happy to help =]&#60;/p&#62;
&#60;p&#62;1&#38;amp;2) To make the gray bar &#34;hit the top&#34; you can open style.css and change the following:&#60;/p&#62;
&#60;p&#62;#head{ .. } to&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#head {
    height: 107px;
    position: relative;
    z-index: 5;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Remove the following from #mani{ ...}: &#60;code&#62;padding-top: 40px;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Add the following to #content{ ... } :&#60;br /&#62;
&#60;code&#62;margin-top: 40px;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;If you want your content to be a little higher or lower you can play around with those 40px.&#60;/p&#62;
&#60;p&#62;These steps seem to suffice for what you're trying to achieve.&#60;/p&#62;
&#60;p&#62;3) You can open style.css and find #sidebar{ }, here you can adjust the padding &#38;amp; width accordingly. When you increase your padding by 5 your width should decrease by 5.&#60;/p&#62;
&#60;p&#62;example:&#60;br /&#62;
&#60;code&#62;#sidebar{padding:10px 5px}&#60;/code&#62;&#60;br /&#62;
This means a padding of 10px for top and 10px for bottom (so width decreases by 20) and 5px for left &#38;amp; right. If you put 4 values it is Top Right Bottom Left.&#60;/p&#62;
&#60;p&#62;I hope this suffices.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rafizzz on "line under social buttons"</title>
			<link>http://www.kriesi.at/support/topic/line-under-social-buttons#post-22238</link>
			<pubDate>Thu, 07 Jul 2011 16:55:18 +0000</pubDate>
			<dc:creator>rafizzz</dc:creator>
			<guid isPermaLink="false">22238@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Chris!&#60;/p&#62;
&#60;p&#62;Your support is very professional!&#60;/p&#62;
&#60;p&#62;I've changed the background color as you said - you can see it here: &#60;a href=&#34;http://www.affiliaxe.com/about-us&#34; rel=&#34;nofollow&#34;&#62;http://www.affiliaxe.com/about-us&#60;/a&#62;&#60;br /&#62;
but i have few problems i need to solve:&#60;/p&#62;
&#60;p&#62;1) the sidebar background is not all the way up and down. there is a white/shadow above it. is there a way to make the sidebar background color go all the way to the top and the shadow over layer will be on top of it?&#60;/p&#62;
&#60;p&#62;2) same problem but now to the other direction (the bottom of the side bar), the background color is not going all the way down.&#60;br /&#62;
see here: &#60;a href=&#34;http://www.affiliaxe.com/advertisers&#34; rel=&#34;nofollow&#34;&#62;http://www.affiliaxe.com/advertisers&#60;/a&#62;&#60;br /&#62;
how can I make it go all the way down until it touches the black footer?&#60;/p&#62;
&#60;p&#62;3) the text on the left side to the sidebar is very close to the sidebar, how can i increase the margin/padding between the left side text to the side bar?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "line under social buttons"</title>
			<link>http://www.kriesi.at/support/topic/line-under-social-buttons#post-22161</link>
			<pubDate>Thu, 07 Jul 2011 02:49:53 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">22161@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Certainly, you can open style.css and find &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#sidebar{
width:280px;
overflow: hidden;
margin-right:50px;
position:relative;
float:left;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can simply add the following code before the ending bracket.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;background: #F4F3F4&#60;/code&#62; &#60;/p&#62;
&#60;p&#62;This, however, will make your text appear on the very edge of your sidebar block. To solve this you can change it to:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#sidebar{
width:260px;
overflow: hidden;
margin-right:50px;
position:relative;
float:left;
background:#F4F3F4;
padding: 0 10px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This will add a padding to both your left and right side of your sidebar, so the text wont &#34;stick&#34; to the sides.&#60;/p&#62;
&#60;p&#62;If the gray I picked isn't your preferred gray you can always choose a different &#60;a href=&#34;http://www.2createawebsite.com/build/hex-colors.html&#34;&#62;Hex Color&#60;/a&#62; instead of F4F3F4.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rafizzz on "line under social buttons"</title>
			<link>http://www.kriesi.at/support/topic/line-under-social-buttons#post-22145</link>
			<pubDate>Wed, 06 Jul 2011 23:46:00 +0000</pubDate>
			<dc:creator>rafizzz</dc:creator>
			<guid isPermaLink="false">22145@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have one more question please, is there a way to change the background color of all the sidebars in my site to light grey and leave the rest of the page background's in white?&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rafizzz on "line under social buttons"</title>
			<link>http://www.kriesi.at/support/topic/line-under-social-buttons#post-22144</link>
			<pubDate>Wed, 06 Jul 2011 23:38:15 +0000</pubDate>
			<dc:creator>rafizzz</dc:creator>
			<guid isPermaLink="false">22144@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It worked!&#60;/p&#62;
&#60;p&#62;Thank you Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "line under social buttons"</title>
			<link>http://www.kriesi.at/support/topic/line-under-social-buttons#post-22136</link>
			<pubDate>Wed, 06 Jul 2011 22:33:06 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">22136@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;To remove the lines and put the buttons closer together at the same time you can add the following code to the bottom of your style1.css file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;ul.wp-socializer-jump li a {
    border-bottom-style: none !important;
    padding: 0px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The &#34;0px&#34; you see can be changed to your liking (1px, 2px, .. ,99px).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rafizzz on "line under social buttons"</title>
			<link>http://www.kriesi.at/support/topic/line-under-social-buttons#post-22128</link>
			<pubDate>Wed, 06 Jul 2011 17:55:37 +0000</pubDate>
			<dc:creator>rafizzz</dc:creator>
			<guid isPermaLink="false">22128@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;hi !&#60;/p&#62;
&#60;p&#62;I've added new widget called easy buttons (it's social buttons) to my site and put it in the top of my sidebar.&#60;br /&#62;
you can see it here:&#60;br /&#62;
&#60;a href=&#34;http://www.affiliaxe.com/about-us&#34; rel=&#34;nofollow&#34;&#62;http://www.affiliaxe.com/about-us&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I have 2 problems:&#60;br /&#62;
1) some strange lines is appear behind the buttons and i can't remove them. who can i remove these lines?&#60;br /&#62;
2) how can I make the buttons closer to each other and decrease the space beetwen them?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
