<?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: height - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/height</link>
		<description>Support Forum - Tag: height - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 20 Jun 2013 09:52:08 +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/height" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Slideshow height auto-resize on load"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-height-auto-resize-on-load#post-118192</link>
			<pubDate>Thu, 13 Jun 2013 20:58:37 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">118192@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad you were able to find a solution that worked for you :)&#60;/p&#62;
&#60;p&#62;Let us know if you have any other questions or issues.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Fixed Height Portfolio Slideshow"</title>
			<link>http://www.kriesi.at/support/topic/fixed-height-portfolio-slideshow#post-117908</link>
			<pubDate>Wed, 12 Jun 2013 19:19:31 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">117908@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The best way to go about it, is to first install the Simple Image Sizes 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; ). The plugin will give you complete control over images: setting constraints for specific locations like blog, thumbnails, portfolio, gallery, shop, etc. along with the ability to set whether to crop an image or not in Settings &#38;gt; Media.&#60;/p&#62;
&#60;p&#62;Changing the dimensions of images does NOT automatically change all the images already uploaded but only affects new uploads. To change the sizes of images already uploaded, you will need to use the Regenerator - also a part of the Simple Image Sizes and found on the bottom of Settings &#38;gt; Media. Don't forget that images scale down, so always upload images bigger (or the same) as the constraints you set in Settings &#38;gt; Media (with the plugin) or you will get blurry (stretched) or incomplete images.&#60;/p&#62;
&#60;p&#62;============&#60;/p&#62;
&#60;p&#62;You need to create some rules for your images. That you will only have 3 types of images. A square, a landscape with a height of 650px , and a portrait with a width of 650. Then you can use css .. something like this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top.single-portfolio .slideshow li img{
min-height: 650px;
max-width: 100%;
min-width: 650px;
max-height: 100%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top.single-portfolio .slideshow li img{
min-height: 650px;
height: 100%;
min-width: 630px;
width: 100%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However, since the available area is a square 630x630 , you will wind up with cut off images. There is simply no room . So you need to pick a smaller number, 315px to be the max height of landscape and 315px to be max width of portrait. So that way your portraits can be 315  (min) x 630 (max) and your landscapes 630 (max) x 315 (min).&#60;/p&#62;
&#60;p&#62;Try it with your current images&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top.single-portfolio .slideshow li img {
min-height: 315px;
max-height: 630px;
min-width: 315px;
max-width: 630px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Blackthorns on "Slideshow height auto-resize on load"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-height-auto-resize-on-load#post-117859</link>
			<pubDate>Wed, 12 Jun 2013 14:48:05 +0000</pubDate>
			<dc:creator>Blackthorns</dc:creator>
			<guid isPermaLink="false">117859@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I add this code to my CSS file :&#60;/p&#62;
&#60;p&#62;#top .slideshow {&#60;br /&#62;
	height: 227px !important;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;and it seems to work now.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Blackthorns on "Slideshow height auto-resize on load"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-height-auto-resize-on-load#post-117840</link>
			<pubDate>Wed, 12 Jun 2013 13:28:44 +0000</pubDate>
			<dc:creator>Blackthorns</dc:creator>
			<guid isPermaLink="false">117840@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, thanks.&#60;br /&#62;
I added your code but now, the slider is resizing everytime with each picture...&#60;br /&#62;
It's like 227px &#38;gt; 230px &#38;gt;227px..&#60;br /&#62;
Can you help me please ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aldermancompany on "Fixed Height Portfolio Slideshow"</title>
			<link>http://www.kriesi.at/support/topic/fixed-height-portfolio-slideshow#post-117442</link>
			<pubDate>Mon, 10 Jun 2013 20:08:26 +0000</pubDate>
			<dc:creator>aldermancompany</dc:creator>
			<guid isPermaLink="false">117442@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've searched through several of the other threads, but have yet to find an answer for what I'm after.&#60;/p&#62;
&#60;p&#62;I'm creating a site using Angular that within the Portfolio section, uses both vertical and horizontal images throughout. Since there is content below the images in the slideshow on each portfolio-single page, I would like to limit the height of the image in each slideshow, without cropping the image. Currently, the theme is setup (or so it appears to me) to have a max width of 630px by whatever height the image happens to be at that width. I'm wanting to accomplish the inverse of this: max height of 650px by whatever width the image happens to be (up to 630px).&#60;/p&#62;
&#60;p&#62;I've changed the functions.php to create a specific size called 'portfolio-fixed', which uses the following code:&#60;br /&#62;
&#60;code&#62;$avia_config['imgSize']['portfolio-fixed'] = array('width'=&#38;gt;9999, 'height'=&#38;gt;650, 'crop'=&#38;gt;false);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;And changed the 'loop-portfolio-single.php' to reflect this change:&#60;br /&#62;
&#60;code&#62;$slider-&#38;gt;setImageSize('portfolio-fixed');&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I'm also using the Regenerate Thumbnails plugin to recreate the images at the new size. Yet, no dice. So I'm looking for answers hoping someone will be able to see what I'm perhaps missing. And if visuals help, here are a few:&#60;/p&#62;
&#60;p&#62;Current shot of vertical images within a portfolio page:&#60;br /&#62;
&#60;a href=&#34;http://bit.ly/11v5xwQ&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/11v5xwQ&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Shot of what I'm wanting to accomplish with resized Vertical images:&#60;br /&#62;
&#60;a href=&#34;http://bit.ly/16XIouX&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/16XIouX&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Horizontal image treatment (no change from current state):&#60;br /&#62;
&#60;a href=&#34;http://bit.ly/11v5GQJ&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/11v5GQJ&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Link to portfolio page on development website:&#60;br /&#62;
&#60;a href=&#34;http://bit.ly/13uU6a4&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/13uU6a4&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Aaron
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Header Height Control  //  Fixed Header + Social Icons + additional Navigation"</title>
			<link>http://www.kriesi.at/support/topic/header-height-control-fixed-header-social-icons-additional-navigation#post-117235</link>
			<pubDate>Sun, 09 Jun 2013 07:52:16 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">117235@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Since I can't see your code to give you the correct css for your situation, I will guess. Please add this to your /css/custom.css or to Quick CSS located in Enfold &#38;gt; Theme Options - Layout (textarea at the bottom) . If it doesn't fit change 247px to a lower or higher number.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.fixed_header.social_header #main {
padding-top:197px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Switching to mobile navigation at larger screen size will annoy tablet owners. I think a better solution would be to lower the menu , however to change the screen size that triggers the mobile menu please open up /js/avia.js and find line 1099 which looks like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;switchWidth: 768,&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change that number above (768) to 790&#60;br /&#62;
and also please add this css but change 767 to whatever number you put above minus one. so if instead of 768 you put 777 then put 776 below.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;@media only screen and (max-width: 767px){
.responsive .main_menu {
position: static;
}}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Togel1 on "Header Height Control  //  Fixed Header + Social Icons + additional Navigation"</title>
			<link>http://www.kriesi.at/support/topic/header-height-control-fixed-header-social-icons-additional-navigation#post-117077</link>
			<pubDate>Fri, 07 Jun 2013 21:29:33 +0000</pubDate>
			<dc:creator>Togel1</dc:creator>
			<guid isPermaLink="false">117077@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Nick,&#60;/p&#62;
&#60;p&#62;here are 2 screenshots because I´m on localhost - see the word &#34;Home&#34; below the Logo. If I resize browser window to a smaller size it´s ok...&#60;/p&#62;
&#60;p&#62;Screen 1 - large browser window - &#60;a href=&#34;http://grab.by/nk52&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/nk52&#60;/a&#62;&#60;br /&#62;
Screen 2 - small browser window - &#60;a href=&#34;http://grab.by/nk5a&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/nk5a&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;In screen 2 you see another problem. The navigation overlaps the logo. As in your current online demo I would like to switch to mobile view at a larger browser size. Where must I modify the code - in CSS (media queries) or in JS-file. What are your settings in online demo?&#60;/p&#62;
&#60;p&#62;Thanks and greetings, Tom
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Header Height Control  //  Fixed Header + Social Icons + additional Navigation"</title>
			<link>http://www.kriesi.at/support/topic/header-height-control-fixed-header-social-icons-additional-navigation#post-116952</link>
			<pubDate>Fri, 07 Jun 2013 13:25:35 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">116952@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Do you have a url where this is taking place because I am not seeing this on my local. You can mask the url with &#60;a href=&#34;http://www.goo.gl&#34; rel=&#34;nofollow&#34;&#62;http://www.goo.gl&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Togel1 on "Header Height Control  //  Fixed Header + Social Icons + additional Navigation"</title>
			<link>http://www.kriesi.at/support/topic/header-height-control-fixed-header-social-icons-additional-navigation#post-116941</link>
			<pubDate>Fri, 07 Jun 2013 13:00:25 +0000</pubDate>
			<dc:creator>Togel1</dc:creator>
			<guid isPermaLink="false">116941@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks, Nick,&#60;/p&#62;
&#60;p&#62;fine, that works - but when I set it to 150 then HEADER unfortunately overlaps the following CONTENT.&#60;/p&#62;
&#60;p&#62;Regards, Tom
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Header Height Control  //  Fixed Header + Social Icons + additional Navigation"</title>
			<link>http://www.kriesi.at/support/topic/header-height-control-fixed-header-social-icons-additional-navigation#post-116918</link>
			<pubDate>Fri, 07 Jun 2013 11:16:56 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">116918@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can assign the initial height, The smaller height is based on a percent of the initial height.&#60;/p&#62;
&#60;p&#62;Please open up /js/avia.js and find line 776 that looks like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;el_height       = $(elements).filter(&#38;#39;:first&#38;#39;).height(),&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and change it to something like this, but using the height of the header you want (big). Don't forget the comma at the end,&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;el_height       = 120,&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Togel1 on "Header Height Control  //  Fixed Header + Social Icons + additional Navigation"</title>
			<link>http://www.kriesi.at/support/topic/header-height-control-fixed-header-social-icons-additional-navigation#post-116688</link>
			<pubDate>Thu, 06 Jun 2013 13:12:54 +0000</pubDate>
			<dc:creator>Togel1</dc:creator>
			<guid isPermaLink="false">116688@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey, I would like to change the hight of the HEADER&#60;/p&#62;
&#60;p&#62;- the INITIAL HEIGHT (when the page loads) and&#60;br /&#62;
- the SMALLER HEIGHT after scrolling down.&#60;/p&#62;
&#60;p&#62;Can I assign any fixed values e.g. in pixels or percent?&#60;br /&#62;
If this also will effect the size of the logo, it would be perfect.&#60;/p&#62;
&#60;p&#62;Thanks, Tom
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Slideshow height auto-resize on load"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-height-auto-resize-on-load#post-116608</link>
			<pubDate>Thu, 06 Jun 2013 09:11:43 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">116608@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Add this on your custom.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .slideshow li {
width: 100%;
height: 227px;
}

#top .slideshow li img {
width: 100%;
height: 227px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Blackthorns on "Slideshow height auto-resize on load"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-height-auto-resize-on-load#post-116572</link>
			<pubDate>Thu, 06 Jun 2013 07:55:15 +0000</pubDate>
			<dc:creator>Blackthorns</dc:creator>
			<guid isPermaLink="false">116572@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
Here's my website : &#60;a href=&#34;http://allandickens.com/billets-reservations-spectacle-paris-2013-magnifica/&#34; rel=&#34;nofollow&#34;&#62;http://allandickens.com/billets-reservations-spectacle-paris-2013-magnifica/&#60;/a&#62;&#60;br /&#62;
I've got pages on my website with big slideshows at the top of them.&#60;br /&#62;
The problem is I don't understand why the height of the slideshow is auto-resizing on load...&#60;br /&#62;
There's a little transition on the ul.slideshow class.&#60;br /&#62;
Any suggestion ?&#60;/p&#62;
&#60;p&#62;Cheers
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Logo height adjust breaks theme in IOS responsive sizes"</title>
			<link>http://www.kriesi.at/support/topic/logo-height-adjust-breaks-theme-in-ios-responsive-sizes#post-115867</link>
			<pubDate>Mon, 03 Jun 2013 12:16:51 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">115867@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Andrew,&#60;/p&#62;
&#60;p&#62;I'm not getting any negative effect at all when looking at the site now. It looks like you may changed the layout/header set up however so I'm not sure if this is still valid.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "Logo height adjust breaks theme in IOS responsive sizes"</title>
			<link>http://www.kriesi.at/support/topic/logo-height-adjust-breaks-theme-in-ios-responsive-sizes#post-115643</link>
			<pubDate>Sat, 01 Jun 2013 22:48:57 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">115643@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;A few weeks back I was given some code to lock the logo and menu into a fixed position. Therefore it would stay on screen all the time (even when im scrolling). Its been working fine but since upgrade to 1.5 when I shrink the screen to IOS sizes or try it on an iPhone the main screen is literally cut in half (one side is blank)&#60;/p&#62;
&#60;p&#62;You can see the effect if you try out my website.... andypeck.co.uk&#60;/p&#62;
&#60;p&#62;See below the lines of offending code where the main issue seems to be the lines related to the logo position . However, if I remove it then the logo is positioned too high. The only other way is tweaking the 'locking' part of the CSS which relates to scale but when I do this the logo resizes too small.&#60;/p&#62;
&#60;p&#62;Here's the code:&#60;/p&#62;
&#60;p&#62;/* LOCKS MENU INTO FIXED MODE - SCALES LOGO */&#60;br /&#62;
strong.logo img, #header_main .container, .main_menu ul:first-child &#38;gt; li &#38;gt; a {&#60;br /&#62;
height: 50px !important;&#60;br /&#62;
line-height: 50px !important;&#60;br /&#62;
padding-top:0px !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;/* ADJUSTS LOGO WITHIN HEADER */&#60;br /&#62;
.logo {&#60;br /&#62;
margin-top: 20px !important;&#60;br /&#62;
margin-bottom: 30px !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;/* ADJUSTS HEADER HEIGHT */&#60;br /&#62;
#header_main {&#60;br /&#62;
height: 90px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;cheers&#60;br /&#62;
Andrew
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "Enfold - Menu drop down height fix"</title>
			<link>http://www.kriesi.at/support/topic/enfold-menu-drop-down-height-fix#post-114670</link>
			<pubDate>Wed, 29 May 2013 08:37:48 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">114670@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;All sorted thx - consider this resolved!&#60;/p&#62;
&#60;p&#62;Big thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "Enfold - Menu drop down height fix"</title>
			<link>http://www.kriesi.at/support/topic/enfold-menu-drop-down-height-fix#post-114576</link>
			<pubDate>Tue, 28 May 2013 21:53:42 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">114576@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Big Thanks - Very useful to know. That explains allot. Im on a massive learning curve but im getting there slowly&#60;/p&#62;
&#60;p&#62;Cheers Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Enfold - Menu drop down height fix"</title>
			<link>http://www.kriesi.at/support/topic/enfold-menu-drop-down-height-fix#post-114543</link>
			<pubDate>Tue, 28 May 2013 19:03:23 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">114543@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The border on the menu is from this css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/* CREATES TOP MENU FEINT LINE */
#top .main_menu {
height: 27px;
border-bottom-color: #5e5957 !important;
border-bottom-width: 1px;
border-bottom-style: solid !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Just remember when you add new css for the desktop, you need to remove that styling if you dont' want it on the content below.&#60;/p&#62;
&#60;p&#62;Or, add your desktop only styles to a media query that will make them only show on a desktop. Something like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/*
DESKTOP STYLES
-----------------
Add styles inside the media query below that you only want to be applied to the desktop layout of your site */

@media only screen and (min-width: 768px) {
	/* Desktop styles go here */

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "Enfold - Menu drop down height fix"</title>
			<link>http://www.kriesi.at/support/topic/enfold-menu-drop-down-height-fix#post-114436</link>
			<pubDate>Tue, 28 May 2013 13:27:13 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">114436@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi There,&#60;/p&#62;
&#60;p&#62;Phew! Thought I was going mad! &#60;/p&#62;
&#60;p&#62;Menu looks great in full screen mode on my mac but looks terrible on IOS devices.&#60;/p&#62;
&#60;p&#62;*** Here's whats happening when responsive mode kicks in***&#60;br /&#62;
a) Logo doesn't scale&#60;br /&#62;
b) Lines above the menu (on right) don't turn of when the responsive menu appears - overlaps right across top&#60;br /&#62;
c) In some instances (namely portrait mode on ipad) I end up with both menu's appearing at same time&#60;br /&#62;
d) The slide out menu now has a nasty 'thick' line across it (need to lose that)&#60;/p&#62;
&#60;p&#62;Darn it.... Have I really gone and broke it dis time?!!&#60;br /&#62;
Cheers&#60;br /&#62;
Andy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Enfold - Menu drop down height fix"</title>
			<link>http://www.kriesi.at/support/topic/enfold-menu-drop-down-height-fix#post-114423</link>
			<pubDate>Tue, 28 May 2013 11:36:55 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">114423@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Andy,&#60;/p&#62;
&#60;p&#62;You just need to change that css to:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;strong.logo img, #header_main .container, .main_menu ul:first-child &#38;gt; li &#38;gt; a {
height: 60px !important;
line-height: 60px !important;
padding-top:3px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;which will prevent it from effecting the sub menus.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "Enfold - Menu drop down height fix"</title>
			<link>http://www.kriesi.at/support/topic/enfold-menu-drop-down-height-fix#post-113972</link>
			<pubDate>Sun, 26 May 2013 12:27:28 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">113972@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there....&#60;/p&#62;
&#60;p&#62;I dont know how to give you access with it on so Ive just turned it off. Im not familiar with setting up maintenance which is why ive been working locally.&#60;/p&#62;
&#60;p&#62;Anyway, its off now.&#60;/p&#62;
&#60;p&#62;Can you help me?&#60;br /&#62;
Cheers&#60;br /&#62;
Andy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "ENFOLD - Changed Header Menu issues"</title>
			<link>http://www.kriesi.at/support/topic/enfold-changed-header-menu-issues#post-113971</link>
			<pubDate>Sun, 26 May 2013 12:26:17 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">113971@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;/p&#62;
&#60;p&#62;Nick suggested I put it on maintenance mode but as I dont know how to give you access with it on Ive just turned it off. Im not familiar with setting up maintenance which is why ive been working locally.&#60;/p&#62;
&#60;p&#62;Anyway, its off now.&#60;/p&#62;
&#60;p&#62;Can you help?&#60;/p&#62;
&#60;p&#62;Big Thanks&#60;br /&#62;
Andy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "Enfold - Menu drop down height fix"</title>
			<link>http://www.kriesi.at/support/topic/enfold-menu-drop-down-height-fix#post-113969</link>
			<pubDate>Sun, 26 May 2013 12:21:41 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">113969@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hiya Ismael,&#60;/p&#62;
&#60;p&#62;I was told too by Nick!!! should I take it off so you can look at it or can you tell me how I give you access?&#60;/p&#62;
&#60;p&#62;Cheers
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Enfold - Menu drop down height fix"</title>
			<link>http://www.kriesi.at/support/topic/enfold-menu-drop-down-height-fix#post-113895</link>
			<pubDate>Sun, 26 May 2013 04:29:22 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">113895@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Your website is on maintenance mode.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "ENFOLD - Changed Header Menu issues"</title>
			<link>http://www.kriesi.at/support/topic/enfold-changed-header-menu-issues#post-113894</link>
			<pubDate>Sun, 26 May 2013 04:29:17 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">113894@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Your website is on maintenance mode.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "Enfold - Menu drop down height fix"</title>
			<link>http://www.kriesi.at/support/topic/enfold-menu-drop-down-height-fix#post-113764</link>
			<pubDate>Sat, 25 May 2013 09:58:54 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">113764@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;hi there,&#60;/p&#62;
&#60;p&#62;Ive managed to lock the 'fixed' menu and stop it from doing the shrink effect when you scroll the page. How do I now reset the drop down menu line spacing to the right line height as the following code fixes the 'shrink effect' but messes up the line depth on the rollover drop down (see 'ABOUT' on dummy menu)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.andypeck.co.uk/&#34; rel=&#34;nofollow&#34;&#62;http://www.andypeck.co.uk/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;the code that locked the menu is....&#60;/p&#62;
&#60;p&#62;strong.logo img, #header_main .container, .main_menu ul:first-child &#38;gt; li a {&#60;br /&#62;
height: 60px !important;&#60;br /&#62;
line-height: 60px !important;&#60;br /&#62;
padding-top:3px !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Cheers&#60;br /&#62;
Andy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "ENFOLD - Changed Header Menu issues"</title>
			<link>http://www.kriesi.at/support/topic/enfold-changed-header-menu-issues#post-113763</link>
			<pubDate>Sat, 25 May 2013 09:37:12 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">113763@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there dsgnerfw,&#60;/p&#62;
&#60;p&#62;theres actually a tab in the main dashboard called 'portfolio'... go there, and make a new portfolio item but make sure you create a 'featured image' which is at the bottom right of a NEW page. The featured image is the bit that appears in your portfolio grid. then add sliders, copy and anything else on that page. If you want multiple categories like PHOTOGRAPHY or VIDEO then either create them in the categories bit (still under the portfolio tab) or from within the new portfolio item you are creating (down the right hand side of the interface) Once youve created a few cats then when youve added a few portfolios items you can just tick which cat you want to assign it too. Portfolios can be assigned to multiple cats too&#60;/p&#62;
&#60;p&#62;Hope that helps&#60;br /&#62;
Andy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dsgnerfw on "ENFOLD - Changed Header Menu issues"</title>
			<link>http://www.kriesi.at/support/topic/enfold-changed-header-menu-issues#post-113727</link>
			<pubDate>Sat, 25 May 2013 07:46:07 +0000</pubDate>
			<dc:creator>dsgnerfw</dc:creator>
			<guid isPermaLink="false">113727@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Nice one andy , hmmm might want to consider a fixed layout like yours hehe.&#60;/p&#62;
&#60;p&#62;In your portfolio there's ALL / Photography / Design&#60;/p&#62;
&#60;p&#62;I have a created a gallery using the advance layout editor but it focuses on my logo only. &#38;lt;&#38;lt; Made 1 portfolio item.&#60;/p&#62;
&#60;p&#62;So do I have to make 2 ? Then make a page and post it there ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "ENFOLD - Changed Header Menu issues"</title>
			<link>http://www.kriesi.at/support/topic/enfold-changed-header-menu-issues#post-113640</link>
			<pubDate>Fri, 24 May 2013 22:33:04 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">113640@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;sorry I meant &#60;a href=&#34;http://www.andypeck.co.uk&#34; rel=&#34;nofollow&#34;&#62;http://www.andypeck.co.uk&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Cheers&#60;br /&#62;
Andy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "ENFOLD - Changed Header Menu issues"</title>
			<link>http://www.kriesi.at/support/topic/enfold-changed-header-menu-issues#post-113639</link>
			<pubDate>Fri, 24 May 2013 22:31:24 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">113639@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;Following various posts ive managed to almost get the top nav/logo the way I want it. Basically, I like the 'fixed menu' layout but didnt want the shrink effect, The 'code used' locks the menu/logo depth correctly but it also messes up the dropdown nav. I need it to not be so 'DEEP&#34; between sub sections (its depth has been spread downward by the use of... &#34;line-height: 60px !important;&#34;. I want it reset to the default depth. I also want its position moved back down to start at the top of the line (as per demo)... colours and fonts are correct. &#60;/p&#62;
&#60;p&#62;Here's the code that almost gets me there....&#60;/p&#62;
&#60;p&#62;strong.logo img, #header_main .container, .main_menu ul:first-child &#38;gt; li a {&#60;br /&#62;
height: 60px !important;&#60;br /&#62;
line-height: 60px !important;&#60;br /&#62;
padding-top:3px !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;My website is &#60;a href=&#34;http://www.andpeck.co.uk&#34; rel=&#34;nofollow&#34;&#62;http://www.andpeck.co.uk&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Cheers for your great support as always&#60;br /&#62;
Andy
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
