<?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: splash page - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/splash-page</link>
		<description>Support Forum - Tag: splash page - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 16:48: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/tags/splash-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "CHOICES - Splash Page"</title>
			<link>http://www.kriesi.at/support/topic/choices-splash-page#post-84697</link>
			<pubDate>Tue, 20 Nov 2012 12:30:56 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">84697@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Tbh I think this solution will not work with the theme very well because it uses a redirection function to display the landing page. The only solution I can think of is to use cookies to decide if a redirection is required or not but I leave this up to your programmer. I'd add the code to header.php and based on the cookie result/value you can decide if you want to load the wp page or the html landing page...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ameliaamelia on "CHOICES - Splash Page"</title>
			<link>http://www.kriesi.at/support/topic/choices-splash-page#post-84667</link>
			<pubDate>Tue, 20 Nov 2012 03:21:05 +0000</pubDate>
			<dc:creator>ameliaamelia</dc:creator>
			<guid isPermaLink="false">84667@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;A week ago I asked this questions...&#60;/p&#62;
&#60;p&#62;Is there a way that you know of to create a front page to the site. So the user types in the URL and a splash page pops up for 3 seconds then dissolves away and you're left with the sites normal home page. I have searched everywhere and can't figure out how to do this. Like this site... &#60;a href=&#34;http://www.saxony.com.au/&#34; rel=&#34;nofollow&#34;&#62;http://www.saxony.com.au/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;and got this response...&#60;/p&#62;
&#60;p&#62;A quick google search turned up this: &#60;a href=&#34;http://www.codingforums.com/showthread.php?t=176058&#34; rel=&#34;nofollow&#34;&#62;http://www.codingforums.com/showthread.php?t=176058&#60;/a&#62; . Its a very simple script but if you aren't comfortable setting up and creating your own html/css and adding the js it should only take a freelance developer an hour (or less).&#60;/p&#62;
&#60;p&#62;I couldn't figure it out so I got a computer programmer to help me. He created the code and the image and we cannot figure out where to put it! It is becoming seriously frustrating as all we want is black white splash page with the image on it to then disolve after 4/5 seconds and then for the home page to appear on it.&#60;/p&#62;
&#60;p&#62;Where do I add the HTML code? In the backend? the editor section? do I edit a .php file or create a new one?&#60;/p&#62;
&#60;p&#62;If you could help me with this it would be mush appreciated!&#60;/p&#62;
&#60;p&#62;Thank you,&#60;br /&#62;
Amelia&#60;/p&#62;
&#60;p&#62;This is the code...&#60;/p&#62;
&#60;p&#62;&#38;lt;html&#38;gt;&#60;br /&#62;
	&#38;lt;head&#38;gt;&#60;br /&#62;
		&#38;lt;title&#38;gt; Splash Page!! &#38;lt;/title&#38;gt;&#60;br /&#62;
		&#38;lt;!--&#60;br /&#62;
		internal style sheet below, you can make it an external one if you like&#60;br /&#62;
			&#38;lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;style.css&#34;/&#38;gt;&#60;br /&#62;
		--&#38;gt;&#60;br /&#62;
		&#38;lt;style type=&#34;text/css&#34;&#38;gt;&#60;br /&#62;
			body {background-color: #FFFFFF}&#60;br /&#62;
		&#38;lt;/style&#38;gt;&#60;/p&#62;
&#60;p&#62;		&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;		window.onload=timeout;&#60;br /&#62;
		function timeout ()&#60;br /&#62;
			{&#60;br /&#62;
				window.setTimeout(&#34;redirect()&#34;, 4000)&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;		function redirect()&#60;br /&#62;
			{&#60;br /&#62;
				window.location=&#34;home.html&#34; // the page you want the user to go to after the splash page times out.&#60;br /&#62;
				return&#60;br /&#62;
			}&#60;br /&#62;
		&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;		&#38;lt;body onload=&#34;timeout()&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;		&#38;lt;body&#38;gt;&#60;br /&#62;
		&#60;img src=&#34;splashimage.jpg&#34; /&#62;&#60;br /&#62;
		&#38;lt;/body&#38;gt;&#60;br /&#62;
		&#38;lt;!--&#60;br /&#62;
		if you want a home button to skip the splash page use this.&#60;br /&#62;
		&#60;img src=&#34;Sample.gif&#34; /&#62;&#60;/p&#62;
&#60;p&#62;
		&#38;lt;form&#38;gt;&#60;br /&#62;
		&#38;lt;input type=&#34;button&#34; value=&#34;Home Page&#34; onClick=&#34;redirect()&#34;&#38;gt;&#60;br /&#62;
		&#38;lt;/form&#38;gt;&#60;/p&#62;
&#60;p&#62;		&#38;lt;/body&#38;gt;&#60;br /&#62;
		--&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;/html&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "CHOICES - A few questions..."</title>
			<link>http://www.kriesi.at/support/topic/choices-a-few-questions#post-83369</link>
			<pubDate>Mon, 12 Nov 2012 02:59:02 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">83369@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Glad Devin could help.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ameliaamelia on "CHOICES - A few questions..."</title>
			<link>http://www.kriesi.at/support/topic/choices-a-few-questions#post-83364</link>
			<pubDate>Mon, 12 Nov 2012 01:10:08 +0000</pubDate>
			<dc:creator>ameliaamelia</dc:creator>
			<guid isPermaLink="false">83364@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "CHOICES - A few questions..."</title>
			<link>http://www.kriesi.at/support/topic/choices-a-few-questions#post-83078</link>
			<pubDate>Fri, 09 Nov 2012 17:01:44 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">83078@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Amelia,&#60;/p&#62;
&#60;p&#62;1) In which portfolio view do you mean? The main overview uses the Excerpt for its text content so you would just not put anything in that.&#60;/p&#62;
&#60;p&#62;2) The timeline is a template type that you can select for a page from the Page Attributes meta box when viewing a page. As far as I know it can't be assigned to the general archive view for all categories/posts.&#60;/p&#62;
&#60;p&#62;3) A quick google search turned up this: &#60;a href=&#34;http://www.codingforums.com/showthread.php?t=176058&#34; rel=&#34;nofollow&#34;&#62;http://www.codingforums.com/showthread.php?t=176058&#60;/a&#62; . Its a very simple script but if you aren't comfortable setting up and creating your own html/css and adding the js it should only take a freelance developer an hour (or less).&#60;/p&#62;
&#60;p&#62;4) Not easily no. &#60;/p&#62;
&#60;p&#62;5) Not without re-doing the entire blog template and loop for it. It would take quite a bit of time to customize by a freelance developer if you are interested in that route.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ameliaamelia on "CHOICES - A few questions..."</title>
			<link>http://www.kriesi.at/support/topic/choices-a-few-questions#post-83027</link>
			<pubDate>Fri, 09 Nov 2012 12:10:48 +0000</pubDate>
			<dc:creator>ameliaamelia</dc:creator>
			<guid isPermaLink="false">83027@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have a few questions...&#60;/p&#62;
&#60;p&#62;1. In the portfolio is there a way of just showing the heading and not the text underneath it?&#60;br /&#62;
2. How do I set the Archive page to timeline?&#60;br /&#62;
3. Is there a way that you know of to create a front page to the site. So the user types in the URL and a splash page pops up for 3 seconds then dissolves away and you're left with the sites normal home page. I have searched everywhere and can't figure out how to do this. Like this site... &#60;a href=&#34;http://www.saxony.com.au/&#34; rel=&#34;nofollow&#34;&#62;http://www.saxony.com.au/&#60;/a&#62;&#60;br /&#62;
4. Is there a way of making the widget container thinner. At the moment it takes up too much space AND if I make it thinner will the blog posts and pages adjust to be wider?&#60;br /&#62;
5. Is it possible that when a blog post is set to gallery that the pictures becomes a large feature image that bumps down the sidebar and other posts but this only happens if it's the most recent picture?&#60;/p&#62;
&#60;p&#62;Sorry about so many questions and thanks for your help,&#60;br /&#62;
Amelia
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
