<?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: links broken - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/links-broken</link>
		<description>Support Forum - Tag: links broken - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 09:37: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/tags/links-broken" rel="self" type="application/rss+xml" />

		<item>
			<title>webbietl on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-79601</link>
			<pubDate>Sat, 13 Oct 2012 06:55:13 +0000</pubDate>
			<dc:creator>webbietl</dc:creator>
			<guid isPermaLink="false">79601@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes, everything works! thank you so much for all your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-78145</link>
			<pubDate>Mon, 01 Oct 2012 20:56:18 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">78145@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Ok, please try this out. First, take out the code you used from the fixes that you said made things work on iphone, lets try this first.&#60;/p&#62;
&#60;p&#62;Please *make a backup copy* then open up avia.js located in the /js/ directory in the theme. We will be replacing the function which starts on line 1231 and begins with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// -------------------------------------------------------------------------------------------
// Hover effect activation
// -------------------------------------------------------------------------------------------&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and it ends on line 1307 *before* start of the next function *which we leave alone* and looks like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// -------------------------------------------------------------------------------------------
// small js fixes for pixel perfection :)
// -------------------------------------------------------------------------------------------&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So delete everything between lines 1231 - 1307 , and paste the code below in place of the block  you just deleted on line 1231&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// -------------------------------------------------------------------------------------------
// Hover effect activation
// -------------------------------------------------------------------------------------------

(function($)
{
	$.fn.avia_activate_hover_effect = function(variables)
	{
		var defaults =
		{
			autolinkElements: &#38;#39;a[rel^=&#38;quot;prettyPhoto&#38;quot;], a[rel^=&#38;quot;lightbox&#38;quot;], a[href$=jpg], a[href$=png], a[href$=gif], a[href$=jpeg], a[href$=&#38;quot;.mov&#38;quot;] , a[href$=&#38;quot;.swf&#38;quot;] , a[href*=&#38;quot;vimeo.com&#38;quot;] , a[href*=&#38;quot;youtube.com&#38;quot;], a.external-link, .avia_mega a, .dynamic_template_columns a, .slideshow_container a, .related_entries_container a&#38;#39;
		};

		var options = $.extend(defaults, variables), css3 = $(&#38;#39;html&#38;#39;).is(&#38;#39;.csstransforms&#38;#39;), opacity_val = 0.8;

		return this.each(function()
		{
			if(css3)
			{
				opacity_val = 1;
			}

			$(options.autolinkElements, this).not(&#38;quot;.noLightbox a&#38;quot;).contents(&#38;#39;img:not(.filtered-image)&#38;#39;).each(function()
			{
				var img = $(this),
					a = img.parent(),
					preload = img.parents(&#38;#39;.preloading&#38;#39;),
					$newclass = &#38;#39;lightbox_video&#38;#39;,
					applied= false;

				if(a.attr(&#38;#39;href&#38;#39;).match(/(jpg&#124;gif&#124;jpeg&#124;png&#124;tif)/))
				{
					$newclass = &#38;#39;lightbox_image&#38;#39;;
				}

				if(a.is(&#38;#39;.external-link&#38;#39;) &#124;&#124; ! a.attr(&#38;#39;href&#38;#39;).match(/(jpg&#124;gif&#124;jpeg&#124;png&#124;\.tif&#124;\.mov&#124;\.swf&#124;vimeo\.com&#124;youtube\.com)/))
				{
					$newclass = &#38;#39;external_image&#38;#39;;
				}

				if(a.is(&#38;#39;a&#38;#39;))
				{
					if(img.is(&#38;#39;.alignright&#38;#39;)) {img.removeClass(&#38;#39;alignright&#38;#39;); a.addClass(&#38;#39;alignright&#38;#39;)}
					if(img.is(&#38;#39;.alignleft&#38;#39;)) {img.removeClass(&#38;#39;alignleft&#38;#39;); a.addClass(&#38;#39;alignleft&#38;#39;)}
					if(img.css(&#38;#39;float&#38;#39;) == &#38;#39;left&#38;#39; &#124;&#124; img.css(&#38;#39;float&#38;#39;) == &#38;#39;right&#38;#39;) {a.css({float:img.css(&#38;#39;float&#38;#39;)})}
					if(!a.css(&#38;#39;position&#38;#39;) &#124;&#124; a.css(&#38;#39;position&#38;#39;) == &#38;#39;static&#38;#39;) { a.css({position:&#38;#39;relative&#38;#39;, display:&#38;#39;inline-block&#38;#39;}); }
					if(img.is(&#38;#39;.aligncenter&#38;#39;)) a.css({display:&#38;#39;block&#38;#39;});
					if(img.is(&#38;#39;.avia_mega img&#38;#39;)) a.css({position:&#38;#39;relative&#38;#39;, display:&#38;#39;inline-block&#38;#39;});
					if(img.css(&#38;#39;left&#38;#39;)) { a.css({left: img.css(&#38;#39;left&#38;#39;)}); img.css(&#38;#39;left&#38;#39;, 0); }
				}

				if((navigator.userAgent.match(/iPhone/i)) &#124;&#124; (navigator.userAgent.match(/iPod/i)) &#124;&#124; (navigator.userAgent.match(/iPad/i))  &#124;&#124; (navigator.userAgent.match(/Android/i))) {

					var bg = $(&#38;quot;&#38;lt;span class=&#38;#39;image_overlay_effect&#38;#39;&#38;gt;&#38;lt;span class=&#38;#39;image_overlay_effect_inside&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/span&#38;gt;&#38;quot;).appendTo(a);
						bg.css({display:&#38;#39;block&#38;#39;, zIndex:5, opacity:1});

				} else {

				var bg = $(&#38;quot;&#38;lt;span class=&#38;#39;image_overlay_effect&#38;#39;&#38;gt;&#38;lt;span class=&#38;#39;image_overlay_effect_inside&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/span&#38;gt;&#38;quot;).appendTo(a);
					bg.css({display:&#38;#39;block&#38;#39;, zIndex:5, opacity:0.2});

				bg.hover(function()
				{
					if(applied == false &#38;amp;&#38;amp; img.css(&#38;#39;opacity&#38;#39;) &#38;gt; 0.2)
					{
						bg.addClass($newclass);
						applied = true;
					}	

					bg.stop().animate({opacity:opacity_val},400);
				},
				function()
				{
					bg.stop().animate({opacity:0.2},400);
				});

			}

			});
		});
	};
})(jQuery);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And add to Quick CSS the following&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.lightbox_video .image_overlay_effect_inside {
	background-image:url(&#38;quot;../images/layout/overlay-video.png&#38;quot;);
	background-repeat:no-repeat;
	background-position:center center;
	}
.lightbox_image .image_overlay_effect_inside {
	background-image:url(&#38;quot;../images/layout/overlay-image.png&#38;quot;);
	background-repeat:no-repeat;
	background-position:center center;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Let us know how it went. &#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webbietl on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77994</link>
			<pubDate>Sun, 30 Sep 2012 16:48:18 +0000</pubDate>
			<dc:creator>webbietl</dc:creator>
			<guid isPermaLink="false">77994@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;I followed your steps to incorporate the extra code into custom.css and was able to get it to work on my iphone, but the site's portfolio still would not load for ipad. Can you please advise?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.davidlee2012.com/about/fix-the-richmond/&#34; rel=&#34;nofollow&#34;&#62;http://www.davidlee2012.com/about/fix-the-richmond/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thomas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77776</link>
			<pubDate>Fri, 28 Sep 2012 12:28:02 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">77776@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Daniel,&#60;/p&#62;
&#60;p&#62;Thanks for posting the solution.&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aimaqvonlobenstein on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77772</link>
			<pubDate>Fri, 28 Sep 2012 11:39:10 +0000</pubDate>
			<dc:creator>aimaqvonlobenstein</dc:creator>
			<guid isPermaLink="false">77772@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;after some tests we realize what the problem is. The span class=&#34;image_overlay_effect element is not shown on mobil devices (no hover effect).&#60;/p&#62;
&#60;p&#62;Our solution:&#60;/p&#62;
&#60;p&#62;1. We check the user agent in avia.js file in the avia_activate_hover_effect function. If it's an mobile device we set span element opacity:1 and deactivate the bg.hover function.&#60;br /&#62;
2. We integrate the standard hover overlay image for the .image_overlay_effect_inside element in custom.css.&#60;/p&#62;
&#60;p&#62;At the end we have a desktop version with hover and a mobile version with an image on top.&#60;/p&#62;
&#60;p&#62;Best, Daniel
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77767</link>
			<pubDate>Fri, 28 Sep 2012 11:07:51 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">77767@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Sorry I don't own an iPhone but ask a friend to check for me. I am going to get this to Kriesi immediately as well as do some limited testing myself, so please hang in there.&#60;/p&#62;
&#60;p&#62;[EDIT] - &#60;/p&#62;
&#60;p&#62;@aimaqvonlob Actually I do see something The Z-Index on the overlay is higher than it is on the lightbox and it should be the other way around. &#60;/p&#62;
&#60;p&#62;Try adding something like this to the Quick CSS in the back end of Propulsion &#38;gt; Theme Options &#38;gt; Styling&#60;/p&#62;
&#60;p&#62;Since I can't see what I am doing, I am gonna give you 4 blocks to try out. &#60;/p&#62;
&#60;p&#62;Please add one, see if it helped on ipad, and if not, please remove it, and put the next block into Quick CSS, testing each block individually.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .slideshow li {
z-index: 9999 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;two&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.image_overlay_effect.lightbox_video {
z-index: 9999 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;three&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.featured.featured_container1.caption_left.caption_left_framed.imageslide.slide_number_1 {
z-index: 9999 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;four&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.image_overlay_effect_inside {
z-index: 9999 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Otherwise you can wait till Kriesi takes a look&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aimaqvonlobenstein on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77734</link>
			<pubDate>Fri, 28 Sep 2012 08:22:35 +0000</pubDate>
			<dc:creator>aimaqvonlobenstein</dc:creator>
			<guid isPermaLink="false">77734@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;we have the same problem with ipad 2 / iOS 6 / safari device on our site with the propulsion theme. If we tap an slideshow image to open the lightbox nothing happens. It works fine on desktop, Android devices und iOS 5 devices.&#60;/p&#62;
&#60;p&#62;You can test it here: &#60;a href=&#34;http://www.avlberlin.com/portfolio/head-tennis-maria-vs-maria/&#34; rel=&#34;nofollow&#34;&#62;http://www.avlberlin.com/portfolio/head-tennis-maria-vs-maria/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;We checked your Link &#60;a href=&#34;http://www.kriesi.at/themes/eunoia/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/eunoia/&#60;/a&#62; same problem. Nothing happens if we tap on the image.&#60;br /&#62;
May be there is a problem with hover effect and the tap or touch event.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Daniel
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77586</link>
			<pubDate>Thu, 27 Sep 2012 14:17:56 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">77586@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I just looked on ipad2/ios6/safari , at &#60;a href=&#34;http://www.kriesi.at/themes/eunoia/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/eunoia/&#60;/a&#62; and everything works fine. However on your site , still can't click.&#60;/p&#62;
&#60;p&#62;Take a look at this snapshot &#60;a href=&#34;http://i48.tinypic.com/2hfovpz.png&#34; rel=&#34;nofollow&#34;&#62;http://i48.tinypic.com/2hfovpz.png&#60;/a&#62; the left side is the demo side code and the right side is your code. &#60;/p&#62;
&#60;p&#62;All I can suggest is to please make sure you are using the latest version of your browser, and return to the original setup which works on ipad2. Unfortunately I don't have a different version to test on besides that. Perhaps someone else has another approach to helping you with this.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BigLyonsy on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77549</link>
			<pubDate>Thu, 27 Sep 2012 09:18:21 +0000</pubDate>
			<dc:creator>BigLyonsy</dc:creator>
			<guid isPermaLink="false">77549@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Just checked the Themes demo on an ipad and it seems the links don't actually work there too. If you don't want titles on the images then the images alone wont link to a new page/post.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77495</link>
			<pubDate>Thu, 27 Sep 2012 01:44:08 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">77495@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Why not try this. Leave everything as it was originally, working on iPad and instead of greyscale overlays, have them come out completely transparent. To the end user it will look as if they are not even present, and everything will work in iPad. Because otherwise you would have to modify a lot of different jQuery and php just to get to the bottom of this.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BigLyonsy on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77436</link>
			<pubDate>Wed, 26 Sep 2012 14:01:28 +0000</pubDate>
			<dc:creator>BigLyonsy</dc:creator>
			<guid isPermaLink="false">77436@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi guys, thanks for getting back in touch.&#60;/p&#62;
&#60;p&#62;I removed the gloss.png code in the base.css file.&#60;/p&#62;
&#60;p&#62;I want to keep the portfolios functionality of being able to be sorted. This works fine on the &#34;our work&#34; section of the website on an iPad/iphone but the links are still not working. The slider also works responsively on an ipad with swipe functions but still no link when selected.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77415</link>
			<pubDate>Wed, 26 Sep 2012 09:28:57 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">77415@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I checked on a friend's ipad and indeed the links on the four images do not work. &#60;/p&#62;
&#60;p&#62;What exactly do you mean when you say you removed overlays and added links? In the template itself?&#60;/p&#62;
&#60;p&#62;Functionality wise , what are you trying to achieve? If all you want is to have 4 images, each linking to some page there is an easier way to go about it. &#60;/p&#62;
&#60;p&#62;Right now this is how your code looks for each image&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div data-ajax-id=&#38;quot;86&#38;quot; class=&#38;quot;isotope-item post-entry post-entry-86 no_margin flex_column all_sort portfolio-entry-overview portfolio-loop-1 portfolio-parity-odd featured_sort film_sort motion_sort one_fourth portfolio-entry-no-description&#38;quot; style=&#38;quot;position: absolute; left: 0px; top: 0px; -webkit-transform: translate3d(248px, 0px, 0px); &#38;quot;&#38;gt;
	&#38;lt;div class=&#38;quot;inner-entry&#38;quot;&#38;gt;
		&#38;lt;div class=&#38;quot;slideshow_container slide_container_small&#38;quot;&#38;gt;
			&#38;lt;ul class=&#38;quot;slideshow fade_slider&#38;quot; data-autorotation=&#38;quot;false&#38;quot; data-autorotation-timer=&#38;quot;5&#38;quot; data-transition=&#38;quot;fade&#38;quot; style=&#38;quot;height: 183px; &#38;quot;&#38;gt;
				&#38;lt;li data-animation=&#38;quot;random&#38;quot; class=&#38;quot;featured featured_container1 caption_right caption_right_framed caption_framed &#38;quot; style=&#38;quot;visibility: visible; opacity: 1; z-index: 3; -webkit-transition: none; &#38;quot;&#38;gt;
				&#38;lt;div class=&#38;quot;slideshow_media_wrap&#38;quot;&#38;gt;
					&#38;lt;a href=&#38;quot;http://greysix.com/work/herricks/&#38;quot; style=&#38;quot;left: auto; &#38;quot;&#38;gt;
&#38;lt;img src=&#38;quot;http://greysix.com/wp-content/uploads/2012/09/herricks-image-284x211.jpg&#38;quot; title=&#38;quot;herricks-image&#38;quot; alt=&#38;quot;&#38;quot; data-imgw=&#38;quot;284&#38;quot; data-imgh=&#38;quot;211&#38;quot; style=&#38;quot;left: 0px; -webkit-perspective: 1000; &#38;quot;&#38;gt;
&#38;lt;span class=&#38;quot;image_overlay_effect external_image&#38;quot; style=&#38;quot;display: block; z-index: 5; opacity: 0.2; &#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;image_overlay_effect_inside&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/span&#38;gt;
&#38;lt;/a&#38;gt;
				&#38;lt;/div&#38;gt;
				&#38;lt;/li&#38;gt;
			&#38;lt;/ul&#38;gt;
		&#38;lt;/div&#38;gt;
	&#38;lt;/div&#38;gt;
	&#38;lt;!-- end post-entry--&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I would try stripping it down further if your require none of the functionality of a sortable portfolio and removing this part below will most likely get things working on apple devices.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;span class=&#38;quot;image_overlay_effect external_image&#38;quot; style=&#38;quot;display: block; z-index: 5; opacity: 0.2; &#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;image_overlay_effect_inside&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The reason I ask what you had in mind about the four images, is because if you plan to keep them static, you can just use code similar to what's below for each image, and once it's styled it will look identical to what you currently are using while speeding up the site by removing unused functionality.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;image_one&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;/page/&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;img1.png&#38;quot;&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/div&#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>Devin on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77255</link>
			<pubDate>Tue, 25 Sep 2012 13:59:29 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">77255@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Adam,&#60;/p&#62;
&#60;p&#62;What about the links don't work? Are they not selectable or when you click them nothing happens?&#60;/p&#62;
&#60;p&#62;As far as I know there isn't anything within the theme that should effect the links only on apple devices so I'm not quite sure where to look for a solution.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BigLyonsy on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77251</link>
			<pubDate>Tue, 25 Sep 2012 13:24:13 +0000</pubDate>
			<dc:creator>BigLyonsy</dc:creator>
			<guid isPermaLink="false">77251@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Mya,&#60;/p&#62;
&#60;p&#62;Keep me posted
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77160</link>
			<pubDate>Mon, 24 Sep 2012 18:08:11 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">77160@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Adam,&#60;/p&#62;
&#60;p&#62;I'm going to tag the rest of the support team to have them test since I don't have a iPhone or iPad.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BigLyonsy on "iPad/iPhone links not working on portfolio &#38; slider"</title>
			<link>http://www.kriesi.at/support/topic/ipadiphone-links-not-working-on-portfolio-slider#post-77079</link>
			<pubDate>Mon, 24 Sep 2012 09:20:04 +0000</pubDate>
			<dc:creator>BigLyonsy</dc:creator>
			<guid isPermaLink="false">77079@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have removed the gloss.png overlay from the images and don't want to display text under or on the images.&#60;/p&#62;
&#60;p&#62;I have the images linking to new pages which work fine when on a desktop, but the links will not work on an apple mobile device.&#60;/p&#62;
&#60;p&#62;Any help would be much appreciated.&#60;/p&#62;
&#60;p&#62;Adam&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.greysix.com&#34; rel=&#34;nofollow&#34;&#62;http://www.greysix.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Becky on "All page and post links only load the home page"</title>
			<link>http://www.kriesi.at/support/topic/all-page-and-post-links-only-load-the-home-page#post-53368</link>
			<pubDate>Wed, 25 Apr 2012 23:54:34 +0000</pubDate>
			<dc:creator>Becky</dc:creator>
			<guid isPermaLink="false">53368@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hmm... The problem has seemed to fix itself now. Not sure what the deal was. Thanks anyway!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "All page and post links only load the home page"</title>
			<link>http://www.kriesi.at/support/topic/all-page-and-post-links-only-load-the-home-page#post-53103</link>
			<pubDate>Tue, 24 Apr 2012 14:19:32 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">53103@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi beckyhartke,&#60;/p&#62;
&#60;p&#62;Do you have a link where we can take a look at the site?&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Becky on "All page and post links only load the home page"</title>
			<link>http://www.kriesi.at/support/topic/all-page-and-post-links-only-load-the-home-page#post-52622</link>
			<pubDate>Fri, 20 Apr 2012 19:10:30 +0000</pubDate>
			<dc:creator>Becky</dc:creator>
			<guid isPermaLink="false">52622@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've tried doing these same steps to fix my problem (only happening on one page for me instead of whole site), but nothing seems to work. Any ideas?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "All page and post links only load the home page"</title>
			<link>http://www.kriesi.at/support/topic/all-page-and-post-links-only-load-the-home-page#post-16223</link>
			<pubDate>Sun, 03 Apr 2011 08:06:52 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">16223@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
it was very likely a permalink and/or reading setting problem and your change forced WP to flush the settings (write them to db again).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wenno on "All page and post links only load the home page"</title>
			<link>http://www.kriesi.at/support/topic/all-page-and-post-links-only-load-the-home-page#post-16179</link>
			<pubDate>Sat, 02 Apr 2011 06:01:14 +0000</pubDate>
			<dc:creator>wenno</dc:creator>
			<guid isPermaLink="false">16179@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;I found some support forums from wordpress and basically reset the Reading settings to selecting page and post and then back to the default and this cleared the issue. Not sure how it all happened by activating and deactivating plugins though?&#60;/p&#62;
&#60;p&#62;Regards&#60;/p&#62;
&#60;p&#62;Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wenno on "All page and post links only load the home page"</title>
			<link>http://www.kriesi.at/support/topic/all-page-and-post-links-only-load-the-home-page#post-16178</link>
			<pubDate>Sat, 02 Apr 2011 05:13:28 +0000</pubDate>
			<dc:creator>wenno</dc:creator>
			<guid isPermaLink="false">16178@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;I have been setting up a shopping cart on my clients site using wp shopping cart and then deactivated it as I was getting an error. I then reactivated it but then found that on the site all my page links were broken and deferred back to the home page so in effect all I have now is the homepage for every link other that the categories links. Can anyone please help with this?&#60;/p&#62;
&#60;p&#62;I have deactivated all the plugins and the issue is still there. I have cleared all cache and tried other browsers and its still all the same. I then activated other themes and the issue still stays. The theme is back on without widgets active and still the same. How can I restore and fix this issue? &#60;a href=&#34;http://www.fishandco.com.au&#34; rel=&#34;nofollow&#34;&#62;http://www.fishandco.com.au&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards&#60;/p&#62;
&#60;p&#62;Peter
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
