<?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 - Tag: custom css - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/custom-css</link>
		<description>Support Forum - Tag: custom css - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 02:40:58 +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/tags/custom-css" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-110777</link>
			<pubDate>Mon, 13 May 2013 05:27:36 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">110777@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Because of the child theme name the cookie will not work. please rename the theme to &#34;AngularChild&#34; and remove the whitespace. Then open up wp-content/themes/angular/js/avia.js and replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;jQuery(document).ready(function(){&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;jQuery(document).ready(function(){
if(jQuery.cookie(&#38;quot;AngularChild_avia_banner&#38;quot;)){
    jQuery(&#38;#39;#info_text_header&#38;#39;).addClass(&#38;#39;minimized&#38;#39;);
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>PhaseCreative on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-110747</link>
			<pubDate>Mon, 13 May 2013 02:04:31 +0000</pubDate>
			<dc:creator>PhaseCreative</dc:creator>
			<guid isPermaLink="false">110747@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thankyou,&#60;br /&#62;
I have actioned this code, but now, when the page opens, the blue ribbon is open by default and if you close it, it will be open again when you change the page.&#60;/p&#62;
&#60;p&#62;I'm so sorry to be a pest. I simply want this to work the way the demo does.&#60;/p&#62;
&#60;p&#62;that is, opens when you first view the site,  and when you close it, it remains closed for the remainder of the viewing session.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-110718</link>
			<pubDate>Sun, 12 May 2013 23:52:53 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">110718@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Latest version of Angular is 1.6.5. &#60;/p&#62;
&#60;p&#62;To fix the ribbon, open functions.php then find this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;######################################################################
# /*creates the notification banner at the top of your website*/
######################################################################
if(!function_exists(&#38;#39;avia_banner&#38;#39;))
{
	function avia_banner($padding = 0)
	{
		$extraClass = &#38;quot;minimized&#38;quot;;
		$output = &#38;quot;&#38;quot;;
		$cookieHash = &#38;quot;&#38;quot;;
		$bannerText = avia_get_option(&#38;#39;banner&#38;#39;);
		$cookieName = THEMENAME.&#38;#39;_avia_banner&#38;#39;;
		$bannerHash = md5($bannerText);
		$padding = $padding * 43;

		if(!trim($bannerText)) return;

		if( empty($_COOKIE[$cookieName])) $extraClass = &#38;quot;minimized firstcall&#38;quot;;
		if(!empty($_COOKIE[$cookieName])) $cookieHash = $_COOKIE[$cookieName];
		if(!empty($_COOKIE[$cookieName]) &#38;amp;&#38;amp; $bannerHash != $cookieHash) $extraClass = &#38;quot;maximized&#38;quot;;

		$output .= &#38;quot;&#38;lt;div class=&#38;#39;$extraClass info_text_header&#38;#39; id=&#38;#39;info_text_header&#38;#39; data-hash=&#38;#39;$bannerHash&#38;#39; data-cookiename=&#38;#39;$cookieName&#38;#39;&#38;gt;&#38;lt;div style=&#38;#39;padding-right:&#38;quot;.$padding.&#38;quot;px;&#38;#39; class=&#38;#39;infotext_wrap&#38;#39;&#38;gt;&#38;quot;;
		$output .= &#38;quot;&#38;lt;div class=&#38;#39;infotext&#38;#39;&#38;gt;$bannerText &#38;lt;a class=&#38;#39;close_info_text rounded&#38;#39; href=&#38;#39;#close&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;close&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;;

		$output .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;;
		echo $output;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;######################################################################
# /*creates the notification banner at the top of your website*/
######################################################################
if(!function_exists(&#38;#39;avia_banner&#38;#39;))
{
	function avia_banner($padding = 0)
	{
		$extraClass = &#38;quot;minimized&#38;quot;;
		$output = &#38;quot;&#38;quot;;
		$cookieHash = &#38;quot;&#38;quot;;
		$bannerText = avia_get_option(&#38;#39;banner&#38;#39;);
		$cookieName = THEMENAME.&#38;#39;_avia_banner&#38;#39;;
		$bannerHash = md5($bannerText);
		$padding = $padding * 43;

		if(!trim($bannerText)) return;

		if( empty($_COOKIE[$cookieName])) $extraClass = &#38;quot;maximized firstcall&#38;quot;;
		if(!empty($_COOKIE[$cookieName])) $cookieHash = $_COOKIE[$cookieName];
		if(!empty($_COOKIE[$cookieName]) &#38;amp;&#38;amp; $bannerHash != $cookieHash) $extraClass = &#38;quot;minimized&#38;quot;;

		$output .= &#38;quot;&#38;lt;div class=&#38;#39;$extraClass info_text_header&#38;#39; id=&#38;#39;info_text_header&#38;#39; data-hash=&#38;#39;$bannerHash&#38;#39; data-cookiename=&#38;#39;$cookieName&#38;#39;&#38;gt;&#38;lt;div style=&#38;#39;padding-right:&#38;quot;.$padding.&#38;quot;px;&#38;#39; class=&#38;#39;infotext_wrap&#38;#39;&#38;gt;&#38;quot;;
		$output .= &#38;quot;&#38;lt;div class=&#38;#39;infotext&#38;#39;&#38;gt;$bannerText &#38;lt;a class=&#38;#39;close_info_text rounded&#38;#39; href=&#38;#39;#close&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;close&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;;

		$output .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;;
		echo $output;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PhaseCreative on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-110709</link>
			<pubDate>Sun, 12 May 2013 22:14:54 +0000</pubDate>
			<dc:creator>PhaseCreative</dc:creator>
			<guid isPermaLink="false">110709@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Devin, the funky characters weren't showing in dreamweaver but when I looked at it in text editor, Bingo. So that fixed the whole style.css issue. Brilliant.&#60;/p&#62;
&#60;p&#62;Back to the ribbon. I reinstalled the theme files in April. How many new releases have there been? Which files in particular should I update? This site is live now and client is finicky about down time so I need to be carefull. Any hints? I'm getting to the display: none point!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-108498</link>
			<pubDate>Thu, 02 May 2013 17:50:30 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">108498@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi PhaseCreative,&#60;/p&#62;
&#60;p&#62;I'm not sure if this is related but your child theme style.css file has some stray data in the import url line: &#60;a href=&#34;http://fishtankcreative.com.au/wp/wp-content/themes/angular-child/style.css&#34; rel=&#34;nofollow&#34;&#62;http://fishtankcreative.com.au/wp/wp-content/themes/angular-child/style.css&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;For the info pane, try updating the main theme files as there have been some bug fixes and updates in 1.6.5 that may help.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PhaseCreative on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-108307</link>
			<pubDate>Thu, 02 May 2013 01:07:11 +0000</pubDate>
			<dc:creator>PhaseCreative</dc:creator>
			<guid isPermaLink="false">108307@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;fishtankcreative.com.au is the URL. &#60;/p&#62;
&#60;p&#62;Thanks in advance
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PhaseCreative on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-108078</link>
			<pubDate>Wed, 01 May 2013 04:08:35 +0000</pubDate>
			<dc:creator>PhaseCreative</dc:creator>
			<guid isPermaLink="false">108078@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Peter,&#60;br /&#62;
Client has it in maintenance mode for now, I'll post the URL when it goes live in the next day or 2.&#60;br /&#62;
Your help is appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-107914</link>
			<pubDate>Tue, 30 Apr 2013 04:58:28 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">107914@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Can you post a link to your website please? The code works on my test server but maybe you renamed the theme or there's another reason why it does not work. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PhaseCreative on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-107714</link>
			<pubDate>Mon, 29 Apr 2013 00:11:29 +0000</pubDate>
			<dc:creator>PhaseCreative</dc:creator>
			<guid isPermaLink="false">107714@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for your reply. Unfortunately, updating the JS didn't work (I made the change, reuploaded the avia.js file and emptied the cache and deleted cookies on chrome, safari, firefox).&#60;/p&#62;
&#60;p&#62;Any other suggestions?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-105869</link>
			<pubDate>Wed, 17 Apr 2013 11:17:07 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">105869@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
1) You don't need custom.css in your child theme because the child theme style.css will be used for your custom styles instead.&#60;/p&#62;
&#60;p&#62;2) To fix the banner issue - please open up wp-content/themes/angular/js/avia.js and replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;jQuery(document).ready(function(){&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;jQuery(document).ready(function(){
if(jQuery.cookie(&#38;quot;Angular_avia_banner&#38;quot;)){
    jQuery(&#38;#39;#info_text_header&#38;#39;).addClass(&#38;#39;minimized&#38;#39;);
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>PhaseCreative on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-105698</link>
			<pubDate>Tue, 16 Apr 2013 01:52:12 +0000</pubDate>
			<dc:creator>PhaseCreative</dc:creator>
			<guid isPermaLink="false">105698@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have fixed question 3) Admin Bar. It was a conflict with Maintenance plugin.&#60;/p&#62;
&#60;p&#62;1 &#38;amp; 2 still remain problematic.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PhaseCreative on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-105621</link>
			<pubDate>Mon, 15 Apr 2013 10:49:18 +0000</pubDate>
			<dc:creator>PhaseCreative</dc:creator>
			<guid isPermaLink="false">105621@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Additionally, I really need to change the heading fonts globally, yet each page seems to have its own style override.&#60;/p&#62;
&#60;p&#62;What am I doing wrong? I've never had trouble working with child themes before.&#60;/p&#62;
&#60;p&#62;I also need to future protect the footer - I do not want a link to the theme developer on my site. And do not want to have to update this each time. &#60;/p&#62;
&#60;p&#62;Please tell me how I can get the child theme to work. &#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PhaseCreative on "Info text &#039;ribbon&#039; at top of page + working with custom.css"</title>
			<link>http://www.kriesi.at/support/topic/info-text-ribbon-at-top-of-page-working-with-customcss#post-105618</link>
			<pubDate>Mon, 15 Apr 2013 10:05:10 +0000</pubDate>
			<dc:creator>PhaseCreative</dc:creator>
			<guid isPermaLink="false">105618@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I have 3 questions.&#60;br /&#62;
1) The info text ribbon in my client site maximizes each page. It's really annoying. I've tried in all browsers. I need to be able to turn the auto load off (so it only expands if someone clicks on the i) OR Make it work like the demo site where it only loads once.&#60;/p&#62;
&#60;p&#62;2) How can I make the custom.css work in my child theme? Can I make footer.php also work in my child theme as I need to make changes and normally run the changes through style.css in a child theme but this is not working.&#60;/p&#62;
&#60;p&#62;3) The admin toolbar disappears when the site is being viewed. I've checked my user settings. Is this a known bug or are there any known plugins that conflict with your theme?&#60;/p&#62;
&#60;p&#62;Unfortunately, I can't show you the site as it's in lock-down for client until live. I can assure you that I've updated to the latest theme files (downloaded fresh today) from the theme forest site, am running the current version of WordPress and all my plugins are up to date.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mr. Mask on "custom.css doesn&#039;t work on mozilla firefox"</title>
			<link>http://www.kriesi.at/support/topic/customcss-doesnt-work-on-mozilla-firefox#post-101730</link>
			<pubDate>Mon, 18 Mar 2013 03:30:04 +0000</pubDate>
			<dc:creator>Mr. Mask</dc:creator>
			<guid isPermaLink="false">101730@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You are the life safer Devin&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "custom.css doesn&#039;t work on mozilla firefox"</title>
			<link>http://www.kriesi.at/support/topic/customcss-doesnt-work-on-mozilla-firefox#post-101728</link>
			<pubDate>Mon, 18 Mar 2013 02:41:14 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">101728@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi GravitatioN.&#60;/p&#62;
&#60;p&#62;This is the incorrect bracket which causes Firefox to ignore the css after it:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#billing_email_field [
float: left;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It should be:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#billing_email_field {
float: left;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mr. Mask on "custom.css doesn&#039;t work on mozilla firefox"</title>
			<link>http://www.kriesi.at/support/topic/customcss-doesnt-work-on-mozilla-firefox#post-101682</link>
			<pubDate>Sun, 17 Mar 2013 17:50:38 +0000</pubDate>
			<dc:creator>Mr. Mask</dc:creator>
			<guid isPermaLink="false">101682@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello guys&#60;br /&#62;
I have another problem , my custom.css doesn't work on firefox&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://markandhans.com/product-category/men&#34; rel=&#34;nofollow&#34;&#62;http://markandhans.com/product-category/men&#60;/a&#62;&#60;br /&#62;
please compare this in chrome with firefox&#60;br /&#62;
sidebar's width in firefox is different like chrome&#60;br /&#62;
any idea?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pwsanders on "Social Media Fix for Frontpage"</title>
			<link>http://www.kriesi.at/support/topic/social-media-fix-for-frontpage#post-97254</link>
			<pubDate>Mon, 18 Feb 2013 15:28:45 +0000</pubDate>
			<dc:creator>pwsanders</dc:creator>
			<guid isPermaLink="false">97254@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks it worked perfectly!&#60;br /&#62;
Have an excellent day
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Issue with Fixed Social Media Buttons"</title>
			<link>http://www.kriesi.at/support/topic/issue-with-fixed-social-media-buttons#post-97194</link>
			<pubDate>Mon, 18 Feb 2013 08:54:18 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">97194@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi pwsanders,&#60;/p&#62;
&#60;p&#62;I have answered that question in this thread: &#60;a href=&#34;http://www.kriesi.at/support/topic/social-media-fix-for-frontpage&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/social-media-fix-for-frontpage&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Social Media Fix for Frontpage"</title>
			<link>http://www.kriesi.at/support/topic/social-media-fix-for-frontpage#post-97188</link>
			<pubDate>Mon, 18 Feb 2013 08:30:19 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">97188@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi pwsanders,&#60;/p&#62;
&#60;p&#62;Try to replace this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .social_bookmarks {
position: fixed;
top: 250px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .social_bookmarks {
position: fixed;
top: 250px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pwsanders on "Social Media Fix for Frontpage"</title>
			<link>http://www.kriesi.at/support/topic/social-media-fix-for-frontpage#post-97081</link>
			<pubDate>Sat, 16 Feb 2013 22:15:20 +0000</pubDate>
			<dc:creator>pwsanders</dc:creator>
			<guid isPermaLink="false">97081@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
I used the following CSS to fix my social media buttons:&#60;br /&#62;
#top .social_bookmarks {&#60;br /&#62;
position: fixed;&#60;br /&#62;
top: 250px;&#60;br /&#62;
}.home .noLightbox.social_bookmarks.icon_count_5 {&#60;br /&#62;
top: 250px !important;&#60;br /&#62;
}&#60;br /&#62;
And it works on every page perfectly except for my frontpage(homepage). The buttons are fixed at the very bottom of the screen.&#60;br /&#62;
Here is a link to the page: &#60;a href=&#34;http://tailoredbystephenb.com/&#34; rel=&#34;nofollow&#34;&#62;http://tailoredbystephenb.com/&#60;/a&#62;&#60;br /&#62;
Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pwsanders on "Issue with Fixed Social Media Buttons"</title>
			<link>http://www.kriesi.at/support/topic/issue-with-fixed-social-media-buttons#post-97055</link>
			<pubDate>Sat, 16 Feb 2013 18:19:56 +0000</pubDate>
			<dc:creator>pwsanders</dc:creator>
			<guid isPermaLink="false">97055@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
I used the following CSS to fix my social media buttons:&#60;br /&#62;
#top .social_bookmarks {&#60;br /&#62;
position: fixed;&#60;br /&#62;
top: 250px;&#60;br /&#62;
}.home .noLightbox.social_bookmarks.icon_count_5 {&#60;br /&#62;
top: 250px !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;And it works on every page perfectly except for my frontpage(homepage). The buttons are fixed at the very bottom of the screen.&#60;br /&#62;
Here is a link to the page: &#60;a href=&#34;http://tailoredbystephenb.com/&#34; rel=&#34;nofollow&#34;&#62;http://tailoredbystephenb.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Issue with Fixed Social Media Buttons"</title>
			<link>http://www.kriesi.at/support/topic/issue-with-fixed-social-media-buttons#post-95582</link>
			<pubDate>Thu, 07 Feb 2013 05:55:45 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">95582@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;You can place this at the very bottom of your custom.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.home .noLightbox.social_bookmarks.icon_count_5 {
top: 250px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tjmaxwell on "Issue with Fixed Social Media Buttons"</title>
			<link>http://www.kriesi.at/support/topic/issue-with-fixed-social-media-buttons#post-95546</link>
			<pubDate>Wed, 06 Feb 2013 23:34:16 +0000</pubDate>
			<dc:creator>tjmaxwell</dc:creator>
			<guid isPermaLink="false">95546@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I found a bit of code to add to my custom CSS to &#34;fix&#34; the social media buttons on the right:&#60;/p&#62;
&#60;p&#62;#top .social_bookmarks {&#60;br /&#62;
position: fixed;&#60;br /&#62;
top: 250px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;It works great for all my interior pages, but on the homepage, it's showing at the very bottom of the screen and several of the buttons get cut off.  This started happening when I switched my slider type to the big full width slider.  Any idea how to fix this?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://squaresound.wpengine.com&#34; rel=&#34;nofollow&#34;&#62;http://squaresound.wpengine.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>propcellar on "Two Questions (Images, Custom CSS)"</title>
			<link>http://www.kriesi.at/support/topic/two-questions-images-custom-css#post-90276</link>
			<pubDate>Sun, 06 Jan 2013 18:19:38 +0000</pubDate>
			<dc:creator>propcellar</dc:creator>
			<guid isPermaLink="false">90276@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Nick!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Two Questions (Images, Custom CSS)"</title>
			<link>http://www.kriesi.at/support/topic/two-questions-images-custom-css#post-89475</link>
			<pubDate>Wed, 26 Dec 2012 20:01:46 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">89475@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Mark,&#60;/p&#62;
&#60;p&#62;Wordpress 3.5 changed the way images are processed. Things got a lot easier. Since now, when you insert the same image into multiple locations , each time you can specify its size at the point you insert it. First of all, as a rule of thumb, you always should upload larger images then you plan on using and never smaller. If the image gets stretched out, it is because the theme expects you to tell it what you want by customizing the css, since one glove can't fit everyone, so the code has 100% width often in the css which should be changed based on how you want your pages to look, and also 100% is there to let you be aware of how large of a space theoretically you could be working with.&#60;/p&#62;
&#60;p&#62;In your opinion, what would be the easiest way to ensure that our images look good throughout the site without us having to photoshop each image we want to upload?&#60;/p&#62;
&#60;p&#62;You must have rules because if you upload photos of snakes  (800width 50 height) and photos of palm trees (50width 800 height), and expect them to reside on the same page and still look good as thumbnails, then you will be disappointed. You need to have a max and min widths and heights. You need to always upload bigger so image shrinks down proportionally. If you don't crop it yourself, wordpress will happily do it for you without regard for making a nice portrait into a modern art masterpiece. If  you tell Wordpress to soft crop , it will listen, but that's when the aspect ratio comes into play (snakes and palm trees)&#60;/p&#62;
&#60;p&#62;You should read my post where i go into detail: &#60;a href=&#34;http://www.kriesi.at/support/topic/portfolio-fullsize-image-height#post-89178&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/portfolio-fullsize-image-height#post-89178&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;In your theme, inside function.php file there are constraints (lines 18-34) . Here is where  you set the dimensions of images for various locations inside the theme.&#60;/p&#62;
&#60;p&#62;There is also a plugin &#60;a href=&#34;http://wordpress.org/extend/plugins/simple-image-sizes/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/simple-image-sizes/&#60;/a&#62; that you can install, and in your Settings Media folder, all the constraints will appear. You should play around with them. (yes they are frustrating as you can read by the link above to my other post) and once you understand them, its not bad. Just remember that changing constraints doesnt change anything until you upload a new image. &#60;/p&#62;
&#60;p&#62;thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>propcellar on "Two Questions (Images, Custom CSS)"</title>
			<link>http://www.kriesi.at/support/topic/two-questions-images-custom-css#post-89357</link>
			<pubDate>Sat, 22 Dec 2012 16:43:07 +0000</pubDate>
			<dc:creator>propcellar</dc:creator>
			<guid isPermaLink="false">89357@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Nick,&#60;/p&#62;
&#60;p&#62;Thanks for the help.  You mention that I can specify settings for image locations and whether or not images are cropped or not.  Where and how would I set those settings?&#60;/p&#62;
&#60;p&#62;In your opinion, what would be the easiest way to ensure that our images look good throughout the site without us having to photoshop each image we want to upload?&#60;/p&#62;
&#60;p&#62;Also, any insight into the reason why the image transitions are the way they are? (reference #3 above)&#60;/p&#62;
&#60;p&#62;Thanks again,&#60;/p&#62;
&#60;p&#62;Mark
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Two Questions (Images, Custom CSS)"</title>
			<link>http://www.kriesi.at/support/topic/two-questions-images-custom-css#post-89307</link>
			<pubDate>Sat, 22 Dec 2012 07:48:48 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">89307@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;It all depends what you put as your image size settings in functions.php. You can have specific settings for certain image locations within the theme (portfolio, blog, etc.) and you specify the constraints and whether the image should be cropped or keep its aspect ratio once the constraint width and height are reached. Its always a good idea to upload images that are in a consistent size for certain locations, &#60;/p&#62;
&#60;p&#62;Because if half the images you upload are smaller then the constraints for portfolio images lets say, and the other half are larger then the constraints, the end result is likely to be inferior to one that consistently uses images larger than the constraints.&#60;/p&#62;
&#60;p&#62;3) You are scaling a square into a rectangle, thus causing a distortion. In the functions.php file take a look at this line&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;portfolio2&#38;#39;] 	= array(&#38;#39;width&#38;#39;=&#38;gt;450, &#38;#39;height&#38;#39;=&#38;gt;300);		// medium preview pic for 2 column portfolio and small 3d slider&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That is the exact size that the 1200x1200 image scales down to. if you change that into a square shape and continue to upload square images, you will not have an issue. If  you don't want to prep your images then you have to depend on the auto crop abilities of Wordpress.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>propcellar on "Two Questions (Images, Custom CSS)"</title>
			<link>http://www.kriesi.at/support/topic/two-questions-images-custom-css#post-89189</link>
			<pubDate>Fri, 21 Dec 2012 03:42:52 +0000</pubDate>
			<dc:creator>propcellar</dc:creator>
			<guid isPermaLink="false">89189@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Devin,&#60;/p&#62;
&#60;p&#62;Thanks for your quick reply.  &#60;/p&#62;
&#60;p&#62;1) We are still in the very early stages of setting up the website so I've only got a couple of images in the portfolio.  Both images are 1024x1024. Am I going to need multiple copies of the same image in different sizes or is it supposed to scale the one uploaded image to fit any container?  I have found that I can change the height: auto instead of 100% and it gets rid of the distortion, but this only works in the 2 column grid view. Any other ideas?  &#60;/p&#62;
&#60;p&#62;2)  Thanks.  I'll put all my CSS there.&#60;/p&#62;
&#60;p&#62;3) We are currently in Maintenance Mode for now until we get the kinks worked out and the content added.  I'll make it live for you to check out the problem.  Here is the link: &#60;a href=&#34;http://tinyurl.com/btzo5pj&#34; rel=&#34;nofollow&#34;&#62;http://tinyurl.com/btzo5pj&#60;/a&#62;. The image only slightly distorted on this page because the container is almost square. It is even more distorted in the slideshow when &#34;read more&#34; is selected.  You'll also be able to see the strange transition between images.&#60;/p&#62;
&#60;p&#62;Thanks again for the help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Two Questions (Images, Custom CSS)"</title>
			<link>http://www.kriesi.at/support/topic/two-questions-images-custom-css#post-89134</link>
			<pubDate>Thu, 20 Dec 2012 18:40:55 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">89134@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi propcellar,&#60;/p&#62;
&#60;p&#62;1) Images for the portfolio should be at least 930px (690px for the no feature size) wide to prevent distortion in the slideshow container. Bigger for the homepage slider size to get the same effect as the demo. For example, here is the initial image used in the demo: &#60;a href=&#34;http://www.kriesi.at/themes/velvet/files/2011/06/iStock_000006026401Medium-1300x1047.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/velvet/files/2011/06/iStock_000006026401Medium-1300x1047.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;2) You can add css to the Quick CSS field in the theme options &#38;gt;Layout &#38;amp; Styling.&#60;/p&#62;
&#60;p&#62;3) I don't see this happening in the demo or on my local installation. Do you have an example of where this is happening? It sounds like it might be related to not using images that are big enough for the slideshow area.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>propcellar on "Two Questions (Images, Custom CSS)"</title>
			<link>http://www.kriesi.at/support/topic/two-questions-images-custom-css#post-89027</link>
			<pubDate>Thu, 20 Dec 2012 02:31:50 +0000</pubDate>
			<dc:creator>propcellar</dc:creator>
			<guid isPermaLink="false">89027@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sorry...one more question...&#60;/p&#62;
&#60;p&#62;3) When the image in the slideshow changes, it is initially shown at it's original size.  This has the effect of only showing a small portion of the image before it gets scaled to fit the container.  How to I keep this from happening.  It's very distracting and annoying.&#60;/p&#62;
&#60;p&#62;Thanks again.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
