<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Embedding a Typeform into Themeco &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 21:40:23 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-369909</guid>
					<title><![CDATA[Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-369909</link>
					<pubDate>Wed, 26 Aug 2015 12:01:56 +0000</pubDate>
					<dc:creator>rikpina</dc:creator>

					<description>
						<![CDATA[
						<p>Hello Team!</p>
<p>I want to embed a typeform (typeform.com) into a page. Typeform has asked me to use this code to create an HTML page on your site with a fullscreen typeform.</p>
<p>&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Transitional//EN&#8221; &#8220;<a href="http://www.w3.org/TR/html4/loose.dtd&#8221;&#038;gt" rel="nofollow">http://www.w3.org/TR/html4/loose.dtd&#8221;&#038;gt</a>;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
	&lt;!&#8211;Add the title of your typeform below&#8211;&gt;<br />
	&lt;title&gt;Teacher Application Form&lt;/title&gt;</p>
<p>	&lt;!&#8211;CSS styles that ensure your typeform takes up all the available screen space (DO NOT EDIT!)&#8211;&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
		html{<br />
			margin: 0;<br />
			height: 100%;<br />
			overflow: hidden;<br />
		}<br />
		iframe{<br />
			position: absolute;<br />
			left:0;<br />
			right:0;<br />
			bottom:0;<br />
			top:0;<br />
			border:0;<br />
		}<br />
	&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
	&lt;iframe id=&#8221;typeform-full&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221; frameborder=&#8221;0&#8243; src=&#8221;<a href="https://chordboxx.typeform.com/to/ujLATe&#8221;&gt;&lt;/iframe&#038;gt" rel="nofollow">https://chordboxx.typeform.com/to/ujLATe&#8221;&gt;&lt;/iframe&#038;gt</a>;<br />
	&lt;script type=&#8221;text/javascript&#8221; src=&#8221;<a href="https://s3-eu-west-1.amazonaws.com/share.typeform.com/embed.js&#8221;&gt;&lt;/script&#038;gt" rel="nofollow">https://s3-eu-west-1.amazonaws.com/share.typeform.com/embed.js&#8221;&gt;&lt;/script&#038;gt</a>;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>I&#8217;ve tried to use the &#8220;code snippet&#8221; element and &#8220;raw content&#8221; element with cornerstone with no success. I&#8217;ve also tried to paste the code in the wordpress text with no luck either as it is not embedding the form at 100% of the available screen area inside. </p>
<p>It should show on a full screen like this (<a href="https://chordboxx.typeform.com/to/ujLATe" rel="nofollow">https://chordboxx.typeform.com/to/ujLATe</a>). </p>
<p>Please help! 🙂</p>
<p>Thanks<br />
Ricardo   </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-369951</guid>
					<title><![CDATA[Reply To: Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-369951</link>
					<pubDate>Wed, 26 Aug 2015 12:51:30 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Add iframe tag in raw content element :</p>
<p><code>&lt;iframe id=&quot;typeform-full&quot; width=&quot;100%&quot; height=&quot;100%&quot; frameborder=&quot;0&quot; src=&quot;https://chordboxx.typeform.com/to/ujLATe&quot;&gt;&lt;/iframe&gt;</code></p>
<p>Add following code in child theme&#8217;s functions.php file :</p>
<pre><code>function my_custom_Script() {
  ?&gt;
   &lt;script type=&quot;text/javascript&quot; src=&quot;https://s3-eu-west-1.amazonaws.com/share.typeform.com/embed.js&quot;&gt;&lt;/script&gt;
  &lt;?php
}

add_action( &#039;wp_footer&#039;, &#039;my_custom_Script&#039;, 99999 );</code></pre>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-370093</guid>
					<title><![CDATA[Reply To: Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-370093</link>
					<pubDate>Wed, 26 Aug 2015 15:01:53 +0000</pubDate>
					<dc:creator>ip79</dc:creator>

					<description>
						<![CDATA[
						<p>Unbelievable!<br />
I was just about to post the same question as I had this silly skinny bar where my typeform should have been.</p>
<p>This support rocks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-370134</guid>
					<title><![CDATA[Reply To: Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-370134</link>
					<pubDate>Wed, 26 Aug 2015 15:33:14 +0000</pubDate>
					<dc:creator>ip79</dc:creator>

					<description>
						<![CDATA[
						<p>Ricardo I PROMISE I&#8217;m not here to hijack your post, you&#8217;re doing 100% the same as I&#8217;m trying to achieve so figured we all combine forces for a quicker resolution to this problem.</p>
<p>The issue was on the typeform end, you don&#8217;t choose the bottom option (full page), choose the embed option, I&#8217;ve taken a screenshot to show how to get this working &#8212;&gt; <a href="http://screencast.com/t/niCFLpoAkl" rel="nofollow">http://screencast.com/t/niCFLpoAkl</a></p>
<p>Hope this helps X support too!<br />
Paul.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-370227</guid>
					<title><![CDATA[Reply To: Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-370227</link>
					<pubDate>Wed, 26 Aug 2015 17:04:04 +0000</pubDate>
					<dc:creator>Thai</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for sharing Paul 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-371841</guid>
					<title><![CDATA[Reply To: Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-371841</link>
					<pubDate>Fri, 28 Aug 2015 03:11:39 +0000</pubDate>
					<dc:creator>rikpina</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks Paul and Staff! It worked 🙂</p>
<p>Ricardo</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-371943</guid>
					<title><![CDATA[Reply To: Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-371943</link>
					<pubDate>Fri, 28 Aug 2015 05:27:14 +0000</pubDate>
					<dc:creator>Nico</dc:creator>

					<description>
						<![CDATA[
						<p>Glad to hear that.</p>
<p>Have a great day! 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-608408</guid>
					<title><![CDATA[Reply To: Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-608408</link>
					<pubDate>Fri, 02 Oct 2015 17:44:32 +0000</pubDate>
					<dc:creator>Austin Abell</dc:creator>

					<description>
						<![CDATA[
						<p>Hi guys!</p>
<p>This was the exact solution I was looking for&#8230; but I&#8217;m not sure what I&#8217;m doing wrong.</p>
<p>Would you mind taking a look?</p>
<p><a href="http://my401k.co/feedback-2/" rel="nofollow">http://my401k.co/feedback-2/</a></p>
<p>&lt;iframe id=&#8221;typeform-full&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221; frameborder=&#8221;0&#8243; src=&#8221;<a href="https://my401k.typeform.com/to/FNzrPm&#8221;&gt;&lt;/iframe&#038;gt" rel="nofollow">https://my401k.typeform.com/to/FNzrPm&#8221;&gt;&lt;/iframe&#038;gt</a>;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-608656</guid>
					<title><![CDATA[Reply To: Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-608656</link>
					<pubDate>Fri, 02 Oct 2015 21:24:18 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Thanks for writing in! Please remove the &lt;p&gt; tag you wrap on the iFrame or add the custom css below on customizer.</p>
<pre><code>#x-section-1 p {
	height: 30em;
}</code></pre>
<p>Hope it helps, Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-613092</guid>
					<title><![CDATA[Reply To: Embedding a Typeform into Themeco]]></title>
					<link>https://theme.co/archive/forums/topic/embedding-a-typeform-into-themeco/#post-613092</link>
					<pubDate>Tue, 06 Oct 2015 13:31:46 +0000</pubDate>
					<dc:creator>Austin Abell</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, that worked pretty well, thanks! Not sure how to remove the P tags so I just used the code. Last thing, how can I change that grey background on the bottom to white to match the survey?</p>
<p><a href="http://my401k.co/feedback/" rel="nofollow">http://my401k.co/feedback/</a></p>
<p>Thank you SO much 🙂</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

