<?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 - User Favorites: nachosn69</title>
		<link><a href='http://www.kriesi.at/support/profile/nachosn69'>nachosn69</a></link>
		<description>Support Forum - User Favorites: nachosn69</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 07:38:33 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "Add a responsive menu"</title>
			<link>http://www.kriesi.at/support/topic/add-a-responsive-menu-2#post-81153</link>
			<pubDate>Fri, 26 Oct 2012 10:18:40 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">81153@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I just tried this myself  for very begining and i got the second menu on top&#60;/p&#62;
&#60;p&#62;in functions php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/*
 * Activate native wordpress navigation menu and register a menu location
 */
if(!function_exists(&#38;#39;avia_nav_menus&#38;#39;))
{
	function avia_nav_menus()
	{
		global $avia_config;

		add_theme_support(&#38;#39;nav_menus&#38;#39;);
		foreach($avia_config[&#38;#39;nav_menus&#38;#39;] as $key =&#38;gt; $value){ register_nav_menu($key, THEMENAME.&#38;#39; &#38;#39;.$value); }
	}

	$avia_config[&#38;#39;nav_menus&#38;#39;] = array(&#38;#39;avia&#38;#39; =&#38;gt; &#38;#39;Main Menu&#38;#39; , &#38;#39;avia2&#38;#39; =&#38;gt; &#38;#39;Socket Menu (no drowpdowns)&#38;#39;);
	avia_nav_menus(); //call the function immediatly to activate
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;in header php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
						/*
*   display the theme logo by checking if the default logo was overwritten in the backend.
*   the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output
*/
echo avia_logo(AVIA_BASE_URL.&#38;#39;images/layout/logo.png&#38;#39;);

/*
*   display the main navigation menu
*   check if a description for submenu items was added and change the menu class accordingly
*   modify the output in your wordpress admin backend at appearance-&#38;gt;menus
*/

echo &#38;quot;&#38;lt;div class=&#38;#39;sub_menu&#38;#39; data-selectname=&#38;#39;&#38;quot;.__(&#38;#39;Select a page&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;;
$args2 = array(&#38;#39;theme_location&#38;#39;=&#38;gt;&#38;#39;avia2&#38;#39;, &#38;#39;fallback_cb&#38;#39; =&#38;gt; &#38;#39;avia_fallback_menu&#38;#39;);
wp_nav_menu($args2);
echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;

echo &#38;quot;&#38;lt;div class=&#38;#39;main_menu&#38;#39; data-selectname=&#38;#39;&#38;quot;.__(&#38;#39;Select a page&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;;
$args = array(&#38;#39;theme_location&#38;#39;=&#38;gt;&#38;#39;avia&#38;#39;, &#38;#39;fallback_cb&#38;#39; =&#38;gt; &#38;#39;avia_fallback_menu&#38;#39;);
wp_nav_menu($args);
echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then in the backend you add the menu in the second slot and call it any name you want, and it displays. Then you can style it&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.sub_menu {
margin: 90px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and it will go below the main navigation menu.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Add a responsive menu"</title>
			<link>http://www.kriesi.at/support/topic/add-a-responsive-menu-2#post-80731</link>
			<pubDate>Tue, 23 Oct 2012 12:13:03 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">80731@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;All it´s done but seems that something still is not correct.&#60;/p&#62;
&#60;p&#62;This are my changes and code right now:&#60;/p&#62;
&#60;p&#62;header.php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;div class=&#38;#39;main_menu&#38;#39; data-selectname=&#38;#39;&#38;quot;.__(&#38;#39;Select a page&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;;
						$args = array(&#38;#39;theme_location&#38;#39;=&#38;gt;&#38;#39;avia&#38;#39;, &#38;#39;fallback_cb&#38;#39; =&#38;gt; &#38;#39;avia_fallback_menu&#38;#39;);
						wp_nav_menu($args);
						echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
						?&#38;gt;
                        &#38;lt;?php

	echo &#38;quot;&#38;lt;div class=&#38;#39;sub_menu&#38;#39; data-selectname=&#38;#39;&#38;quot;.__(&#38;#39;Select a page&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;;
	$args = array(&#38;#39;theme_location&#38;#39;=&#38;gt;&#38;#39;avia2&#38;#39;, &#38;#39;fallback_cb&#38;#39; =&#38;gt; &#38;#39;&#38;#39;, &#38;#39;depth&#38;#39;=&#38;gt;1);
	wp_nav_menu($args);
	echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;functions.php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(!function_exists(&#38;#39;avia_nav_menus&#38;#39;))
{
	function avia_nav_menus()
	{
		global $avia_config;

		add_theme_support(&#38;#39;nav_menus&#38;#39;);
		foreach($avia_config[&#38;#39;nav_menus&#38;#39;] as $key =&#38;gt; $value){ register_nav_menu($key, THEMENAME.&#38;#39; &#38;#39;.$value); }
	}

	$avia_config[&#38;#39;nav_menus&#38;#39;] = array(&#38;#39;avia&#38;#39; =&#38;gt; &#38;#39;Main Menu&#38;#39; , &#38;#39;avia2&#38;#39; =&#38;gt; &#38;#39;Socket Menu (no drowpdowns)&#38;#39;);
	avia_nav_menus(); //call the function immediatly to activate
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;avia.js&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// improves menu for mobile devices
	jQuery(&#38;#39;.responsive .main_menu ul:eq(0)&#38;#39;).mobileMenu({
	  switchWidth: 768,                   							//width (in px to switch at)
	  topOptionText: jQuery(&#38;#39;.main_menu&#38;#39;).data(&#38;#39;selectname&#38;#39;),     	//first option text
	  indentString: &#38;#39;   &#38;#39;  							//string for indenting nested items
	});

	// improves menu for mobile devices
	jQuery(&#38;#39;.responsive .sub_menu ul:eq(0)&#38;#39;).mobileMenu({
	  switchWidth: 768,                   							//width (in px to switch at)
	  topOptionText: jQuery(&#38;#39;.sub_menu&#38;#39;).data(&#38;#39;selectname&#38;#39;),     	//first option text
	  indentString: &#38;#39;   &#38;#39;  							//string for indenting nested items
	});&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;---------&#60;/p&#62;
&#60;p&#62;As you can see the drop down menu still dont appears.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Add a responsive menu"</title>
			<link>http://www.kriesi.at/support/topic/add-a-responsive-menu-2#post-80697</link>
			<pubDate>Tue, 23 Oct 2012 00:00:04 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">80697@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;So you want the menu you brought up from the footer (there is a piece of it still left in the footer) - About, Contacto, Prensa, Alquiler de Espacio - to be the only navigation that tablets and mobile users see, in essence the primary navigation? It may be easier to just move everything that's on top menu to the bottom one and from bottom to top one.&#60;/p&#62;
&#60;p&#62;Would you please try Dude's code again, but first remove the code below from the footer:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;#39;sub_menu&#38;#39;&#38;gt;&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and please delete your second menu in the header and in its place past the complete menu code&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

	echo &#38;quot;&#38;lt;div class=&#38;#39;sub_menu&#38;#39;&#38;gt;&#38;quot;;
	$args = array(&#38;#39;theme_location&#38;#39;=&#38;gt;&#38;#39;avia2&#38;#39;, &#38;#39;fallback_cb&#38;#39; =&#38;gt; &#38;#39;&#38;#39;, &#38;#39;depth&#38;#39;=&#38;gt;1);
	wp_nav_menu($args);
	echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Related entires box text size"</title>
			<link>http://www.kriesi.at/support/topic/related-entires-box-text-size-1#post-80612</link>
			<pubDate>Mon, 22 Oct 2012 09:29:19 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">80612@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Solved. I have edited directly de &#38;lt;h1&#38;gt; Tag in includes/related-posts.php
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Add a responsive menu"</title>
			<link>http://www.kriesi.at/support/topic/add-a-responsive-menu-2#post-80610</link>
			<pubDate>Mon, 22 Oct 2012 08:34:41 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">80610@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have made the changes in js/avia.js but drop down still does not appears. Any Ideas?&#60;/p&#62;
&#60;p&#62;Best,&#60;/p&#62;
&#60;p&#62;Nacho.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Add a responsive menu"</title>
			<link>http://www.kriesi.at/support/topic/add-a-responsive-menu-2#post-80459</link>
			<pubDate>Sat, 20 Oct 2012 07:00:54 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">80459@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Try following - open up js/avia.js and replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// improves menu for mobile devices
	jQuery(&#38;#39;.responsive .main_menu ul:eq(0)&#38;#39;).mobileMenu({
	  switchWidth: 768,                   							//width (in px to switch at)
	  topOptionText: jQuery(&#38;#39;.main_menu&#38;#39;).data(&#38;#39;selectname&#38;#39;),     	//first option text
	  indentString: &#38;#39;&#38;amp;nbsp;&#38;amp;nbsp;&#38;amp;nbsp;&#38;#39;  							//string for indenting nested items
	});&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// improves menu for mobile devices
	jQuery(&#38;#39;.responsive .main_menu ul:eq(0)&#38;#39;).mobileMenu({
	  switchWidth: 768,                   							//width (in px to switch at)
	  topOptionText: jQuery(&#38;#39;.main_menu&#38;#39;).data(&#38;#39;selectname&#38;#39;),     	//first option text
	  indentString: &#38;#39;&#38;amp;nbsp;&#38;amp;nbsp;&#38;amp;nbsp;&#38;#39;  							//string for indenting nested items
	});

	// improves menu for mobile devices
	jQuery(&#38;#39;.responsive .sub_menu ul:eq(0)&#38;#39;).mobileMenu({
	  switchWidth: 768,                   							//width (in px to switch at)
	  topOptionText: jQuery(&#38;#39;.sub_menu&#38;#39;).data(&#38;#39;selectname&#38;#39;),     	//first option text
	  indentString: &#38;#39;&#38;amp;nbsp;&#38;amp;nbsp;&#38;amp;nbsp;&#38;#39;  							//string for indenting nested items
	});&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Nick on "Related entires box text size"</title>
			<link>http://www.kriesi.at/support/topic/related-entires-box-text-size-1#post-80441</link>
			<pubDate>Sat, 20 Oct 2012 04:59:09 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">80441@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;To change the color of the title text of each of the related entries you would add this to custom.css or quick css after  making the changes you want. You can add font-size, font-weight etc..)&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.goog-text-highlight {
background-color: #C9D7F1;
-webkit-box-shadow: 2px 2px 4px #99A;
-moz-box-shadow: 2px 2px 4px #9999aa;
box-shadow: 2px 2px 4px #99A;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
position: relative;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The html code below represents one box in related items. since i dont know what you want to do, I suggest that you download firebug and play with the selectors.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;one_fourth no_margin alpha relThumb relThumb1 post-format-portfolio flex_column&#38;quot;&#38;gt;
&#38;lt;a href=&#38;quot;http://www.delimbo.com/test/expos-artistas/maria-jose-gallardo-expo/&#38;quot; class=&#38;quot;relThumWrap &#38;quot;&#38;gt;
&#38;lt;span class=&#38;quot;related_image_wrap&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;http://www.delimbo.com/test/wp-content/uploads/DELIMBO-TENEO-TE-MARIA-JOSE-FOTOS-ESPACIO-1-100616181012-284x211.jpg&#38;quot; title=&#38;quot;DELIMBO-TENEO-TE-MARIA-JOSE-FOTOS-ESPACIO-1-100616181012&#38;quot; alt=&#38;quot;&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;
&#38;lt;/a&#38;gt;&#38;lt;div class=&#38;quot;portfolio-title title_container&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;http://www.delimbo.com/test/expos-artistas/maria-jose-gallardo-expo/&#38;quot; class=&#38;quot;relThumWrap &#38;quot;&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;h1 class=&#38;quot;main-title&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;http://www.delimbo.com/test/expos-artistas/maria-jose-gallardo-expo/&#38;quot; class=&#38;quot;relThumWrap &#38;quot;&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;a href=&#38;quot;http://www.delimbo.com/test/expos-artistas/maria-jose-gallardo-expo/&#38;quot; rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;Enlace Permanente María José Gallardo&#38;quot;&#38;gt;María José Gallardo&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For making customization to your theme's CSS, we recommend that you install and get to know Firebug ( &#60;a href=&#34;http://getfirebug.com/css&#34; rel=&#34;nofollow&#34;&#62;http://getfirebug.com/css&#60;/a&#62; )  and Google Chrome developer tools ( &#60;a href=&#34;https://developers.google.com/chrome-developer-tools/docs/overview&#34; rel=&#34;nofollow&#34;&#62;https://developers.google.com/chrome-developer-tools/docs/overview&#60;/a&#62; ) browser add-on. Firebug is a free web development tool that integrates into Firefox and Chrome browsers and assists in monitoring, debugging and editing of any website's CSS, HTML, DOM, and JavaScript files.&#60;/p&#62;
&#60;p&#62;Once installed, this easy to follow video will show you the basics of Firebug – &#60;a href=&#34;http://vimeo.com/20917974&#34; rel=&#34;nofollow&#34;&#62;http://vimeo.com/20917974&#60;/a&#62; and get you on your way to customizing your theme like a real pro. &#60;/p&#62;
&#60;p&#62;This is the program that every developer uses to easily see and edit css on any site.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Add a responsive menu"</title>
			<link>http://www.kriesi.at/support/topic/add-a-responsive-menu-2#post-80332</link>
			<pubDate>Fri, 19 Oct 2012 09:05:10 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">80332@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I think that your not understanding me. I have the menu number 2 in this page top below the main menu:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.delimbo.com/test/&#34; rel=&#34;nofollow&#34;&#62;http://www.delimbo.com/test/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The problem comes when i open the website in a mobile phone or tablet. The second menu disappears. I want to be showed as the main one. with a drop down menu for mobile and tablets.&#60;/p&#62;
&#60;p&#62;Best,&#60;/p&#62;
&#60;p&#62;Nacho.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Related entires box text size"</title>
			<link>http://www.kriesi.at/support/topic/related-entires-box-text-size-1#post-80331</link>
			<pubDate>Fri, 19 Oct 2012 08:56:18 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">80331@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi I want to change the size of related entires at the bottom here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.delimbo.com/test/expos-artistas/daniel-munoz-san/&#34; rel=&#34;nofollow&#34;&#62;http://www.delimbo.com/test/expos-artistas/daniel-munoz-san/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;But only in portfolio entires. I have find a selector but also changes the text size of the portfolio preview boxes on the homepage.&#60;/p&#62;
&#60;p&#62;Best,&#60;/p&#62;
&#60;p&#62;Nacho.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Add a responsive menu"</title>
			<link>http://www.kriesi.at/support/topic/add-a-responsive-menu-2#post-80273</link>
			<pubDate>Thu, 18 Oct 2012 17:21:48 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">80273@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please go to Appearance &#38;gt; Menus in the back-end and create as many menus as you want and assign whichever on you like best as your main menu on the same page.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Related entires box text size"</title>
			<link>http://www.kriesi.at/support/topic/related-entires-box-text-size-1#post-80174</link>
			<pubDate>Thu, 18 Oct 2012 02:11:53 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">80174@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nacho,&#60;/p&#62;
&#60;p&#62;There sure is. But I forgot all my Spanish lessons and was unable to find the page you have in mind. If you could give an exact url to the page please and what text property you are looking to change?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Add a responsive menu"</title>
			<link>http://www.kriesi.at/support/topic/add-a-responsive-menu-2#post-80106</link>
			<pubDate>Wed, 17 Oct 2012 17:06:09 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">80106@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I need two menus on the top page here: &#60;a href=&#34;http://www.delimbo.com/test/&#34; rel=&#34;nofollow&#34;&#62;http://www.delimbo.com/test/&#60;/a&#62;&#60;br /&#62;
There´s any way or possibility to make works the secondary menu as the main menu? I Mean, I need the secondary also appears as a drop down when responsive design adapts to smaller screen sizes.&#60;br /&#62;
Sorry for my poor English.... :-P&#60;br /&#62;
Best,&#60;br /&#62;
Nacho.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Related entires box text size"</title>
			<link>http://www.kriesi.at/support/topic/related-entires-box-text-size-1#post-80104</link>
			<pubDate>Wed, 17 Oct 2012 16:55:48 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">80104@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi!&#60;br /&#62;
There´s any css selector to change the text properties only for the related entires boxes below Portfolio page?&#60;br /&#62;
Best,&#60;br /&#62;
Nacho.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Templates With Colums"</title>
			<link>http://www.kriesi.at/support/topic/templates-with-colums#post-33414</link>
			<pubDate>Tue, 29 Nov 2011 10:35:56 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">33414@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It´s Ok Rumble!! It´s only problem of the title lengh it´s not a fail..... :-P Best, Nacho.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Sidebar Widget Box"</title>
			<link>http://www.kriesi.at/support/topic/sidebar-widget-box#post-33243</link>
			<pubDate>Sun, 27 Nov 2011 20:44:53 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">33243@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "Templates With Colums"</title>
			<link>http://www.kriesi.at/support/topic/templates-with-colums#post-33234</link>
			<pubDate>Sun, 27 Nov 2011 18:56:41 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">33234@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Nacho, I think you have a problem with your site.&#60;/p&#62;
&#60;p&#62;Did you change any of the .php files in Shoutbox? I don't think your 4 column panels should have ragged lengths at the bottom. The last time I saw it they all extended to the same length downwards (which is how it is supposed to work), but in your site each row of four panels was getting deeper than the one above.  Chris' fix isn't solving the problem you have underneath, it's just ending the panels after the excerpt. But they are all supposed to be the same depth.&#60;/p&#62;
&#60;p&#62;In one of the panels &#34;El movimiento se hizo trendy&#34;, you have text which is running off the edge to the right. Also your searchbar at the top is all squashed up vertically.&#60;/p&#62;
&#60;p&#62;Maybe you cut off some syntax in a .php file by mistake. If you lose one &#34;}&#34; or a &#34;;&#34; it can really screw things up!&#60;br /&#62;
rich
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "Templates With Colums"</title>
			<link>http://www.kriesi.at/support/topic/templates-with-colums#post-33232</link>
			<pubDate>Sun, 27 Nov 2011 17:55:56 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">33232@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Sidebar Widget Box"</title>
			<link>http://www.kriesi.at/support/topic/sidebar-widget-box#post-33228</link>
			<pubDate>Sun, 27 Nov 2011 14:57:46 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">33228@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yah Man!! Thanks!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Templates With Colums"</title>
			<link>http://www.kriesi.at/support/topic/templates-with-colums#post-33227</link>
			<pubDate>Sun, 27 Nov 2011 14:56:49 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">33227@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Great!! Thanks!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "Templates With Colums"</title>
			<link>http://www.kriesi.at/support/topic/templates-with-colums#post-33183</link>
			<pubDate>Sun, 27 Nov 2011 03:46:15 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">33183@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;to remove this you can add the following to your custom.css file&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.post-entry{
min-height:0 !important;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Dude on "Sidebar Widget Box"</title>
			<link>http://www.kriesi.at/support/topic/sidebar-widget-box#post-33136</link>
			<pubDate>Sat, 26 Nov 2011 07:38:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">33136@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
yes - first you need to find out the id of the widget (you can find it in the page source code). Then you can use following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#text-7 {
    background: none transparent;
    border: none;
    box-shadow: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This code would remove the bg box from the text widget with the id 7 (&#34;Clone Mag - Me Gusta&#34;).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Sidebar Widget Box"</title>
			<link>http://www.kriesi.at/support/topic/sidebar-widget-box#post-33096</link>
			<pubDate>Fri, 25 Nov 2011 12:01:14 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">33096@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Again,&#60;/p&#62;
&#60;p&#62;I would like to know if its possible to display a sidebar widget or space without the white background box. I would like to have the possibility to insert facebok widget without the sidebar element box.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://clonemagazine.com.s69-40.furanet.com/&#34; rel=&#34;nofollow&#34;&#62;http://clonemagazine.com.s69-40.furanet.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Best,&#60;/p&#62;
&#60;p&#62;Nacho.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nachosn69 on "Templates With Colums"</title>
			<link>http://www.kriesi.at/support/topic/templates-with-colums#post-33095</link>
			<pubDate>Fri, 25 Nov 2011 11:57:45 +0000</pubDate>
			<dc:creator>nachosn69</dc:creator>
			<guid isPermaLink="false">33095@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;I´m working with shoutbox right now and find a little display error. I have created a template with 4 colums here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://clonemagazine.com.s69-40.furanet.com/?page_id=1016&#34; rel=&#34;nofollow&#34;&#62;http://clonemagazine.com.s69-40.furanet.com/?page_id=1016&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And 5 Here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://clonemagazine.com.s69-40.furanet.com/?page_id=1018&#34; rel=&#34;nofollow&#34;&#62;http://clonemagazine.com.s69-40.furanet.com/?page_id=1018&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Did you know why appears white space after de text excerpt and keeps growing file by file?&#60;/p&#62;
&#60;p&#62;Best,&#60;/p&#62;
&#60;p&#62;Nacho.&#60;/p&#62;
&#60;p&#62;P.D. Congratulations for your work!!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
