<?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: embed - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/embed</link>
		<description>Support Forum - Tag: embed - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 26 May 2013 01:59:19 +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/embed" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Fusion tables map"</title>
			<link>http://www.kriesi.at/support/topic/fusion-tables-map#post-111155</link>
			<pubDate>Tue, 14 May 2013 16:32:00 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">111155@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi geogecko,&#60;/p&#62;
&#60;p&#62;You could use a custom page template for the page and add it in that way. See: &#60;a href=&#34;http://codex.wordpress.org/Page_Templates#Custom_Page_Template&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Page_Templates#Custom_Page_Template&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>geogecko on "Fusion tables map"</title>
			<link>http://www.kriesi.at/support/topic/fusion-tables-map#post-111078</link>
			<pubDate>Tue, 14 May 2013 10:05:54 +0000</pubDate>
			<dc:creator>geogecko</dc:creator>
			<guid isPermaLink="false">111078@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi folks,&#60;br /&#62;
I want to add a fusion table map to my site, I can't manage it. Can you suggest how I might amend the code to post it?&#60;br /&#62;
Thanks&#60;br /&#62;
Bernard (htt://www.geogecko.com)&#60;/p&#62;
&#60;p&#62;&#38;lt;!DOCTYPE html&#38;gt;&#60;br /&#62;
&#38;lt;html&#38;gt;&#60;br /&#62;
  &#38;lt;head&#38;gt;&#60;br /&#62;
  &#38;lt;style&#38;gt;&#60;br /&#62;
    #map-canvas { width:1000px; height:800px; }&#60;br /&#62;
  &#38;lt;/style&#38;gt;&#60;br /&#62;
  &#38;lt;script type=&#34;text/javascript&#34;&#60;br /&#62;
    src=&#34;http://maps.google.com/maps/api/js?sensor=false&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;/script&#38;gt;&#60;br /&#62;
  &#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
    var map;&#60;br /&#62;
    var layerl0;&#60;br /&#62;
    var layerl1;&#60;br /&#62;
    var layerl2;&#60;br /&#62;
    function initialize() {&#60;br /&#62;
      map = new google.maps.Map(document.getElementById('map-canvas'), {&#60;br /&#62;
        center: new google.maps.LatLng(-13.297911901638637, 27.9502080625),&#60;br /&#62;
        zoom: 7&#60;br /&#62;
      });&#60;br /&#62;
      var style = [&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'all',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { saturation: 99 }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'road.highway',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'road.arterial',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'road.local',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'administrative.neighborhood',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'administrative.land_parcel',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'poi',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'transit',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        }&#60;br /&#62;
      ];&#60;br /&#62;
      var styledMapType = new google.maps.StyledMapType(style, {&#60;br /&#62;
        map: map,&#60;br /&#62;
        name: 'Styled Map'&#60;br /&#62;
      });&#60;br /&#62;
      map.mapTypes.set('map-style', styledMapType);&#60;br /&#62;
      map.setMapTypeId('map-style');&#60;br /&#62;
      layerl0 = new google.maps.FusionTablesLayer({&#60;br /&#62;
        query: {&#60;br /&#62;
          select: &#34;'col2&#38;gt;&#38;gt;0'&#34;,&#60;br /&#62;
          from: '186gYAPNi43m_pTD29ZbTB_JaunrAKikJh0jRdYE'&#60;br /&#62;
        },&#60;br /&#62;
        map: map,&#60;br /&#62;
        styleId: 2,&#60;br /&#62;
        templateId: 2&#60;br /&#62;
      });&#60;br /&#62;
      layerl1 = new google.maps.FusionTablesLayer({&#60;br /&#62;
        query: {&#60;br /&#62;
          select: &#34;'col2&#38;gt;&#38;gt;0'&#34;,&#60;br /&#62;
          from: '1exlL0hvwX6z1Vc245ZGsIwGcTbDiu5pCWSxi7xM'&#60;br /&#62;
        },&#60;br /&#62;
        map: map,&#60;br /&#62;
        styleId: 2,&#60;br /&#62;
        templateId: 2&#60;br /&#62;
      });&#60;br /&#62;
      layerl2 = new google.maps.FusionTablesLayer({&#60;br /&#62;
        query: {&#60;br /&#62;
          select: &#34;'col2'&#34;,&#60;br /&#62;
          from: '12hb056xSAX01zQadeuxYg-ZciwHjOVFg9jf6UMU'&#60;br /&#62;
        },&#60;br /&#62;
        map: map,&#60;br /&#62;
        styleId: 2,&#60;br /&#62;
        templateId: 2&#60;br /&#62;
      });&#60;br /&#62;
    }&#60;br /&#62;
    google.maps.event.addDomListener(window, 'load', initialize);&#60;br /&#62;
  &#38;lt;/script&#38;gt;&#60;br /&#62;
  &#38;lt;/head&#38;gt;&#60;br /&#62;
  &#38;lt;body&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;map-canvas&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/body&#38;gt;&#60;br /&#62;
&#38;lt;/html&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tlow87 on "Video Displaying Improperly"</title>
			<link>http://www.kriesi.at/support/topic/video-displaying-improperly#post-107621</link>
			<pubDate>Sun, 28 Apr 2013 00:27:49 +0000</pubDate>
			<dc:creator>tlow87</dc:creator>
			<guid isPermaLink="false">107621@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That worked!! Thanks Devin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Video Displaying Improperly"</title>
			<link>http://www.kriesi.at/support/topic/video-displaying-improperly#post-107142</link>
			<pubDate>Thu, 25 Apr 2013 02:37:49 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">107142@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi tlow87,&#60;/p&#62;
&#60;p&#62;Try changing the size of the video iframe first since that height is what is setting its height. Otherwise, Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .flex_column .embed-youtube iframe {
width: auto !important;
height: auto !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tlow87 on "Video Displaying Improperly"</title>
			<link>http://www.kriesi.at/support/topic/video-displaying-improperly#post-106964</link>
			<pubDate>Wed, 24 Apr 2013 04:56:38 +0000</pubDate>
			<dc:creator>tlow87</dc:creator>
			<guid isPermaLink="false">106964@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;No luck there :(
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Video Displaying Improperly"</title>
			<link>http://www.kriesi.at/support/topic/video-displaying-improperly#post-106847</link>
			<pubDate>Tue, 23 Apr 2013 17:02:41 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">106847@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try to add this on your custom.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.embed-youtube iframe {
max-height: 70%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tlow87 on "Video Displaying Improperly"</title>
			<link>http://www.kriesi.at/support/topic/video-displaying-improperly#post-106824</link>
			<pubDate>Tue, 23 Apr 2013 15:07:33 +0000</pubDate>
			<dc:creator>tlow87</dc:creator>
			<guid isPermaLink="false">106824@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In the code below, you can see that the blog preview (regardless of style) displays the videos at full height (width is cropped). This is a Latest Blog posts content element of the Video category within a half column.&#60;/p&#62;
&#60;p&#62;Website URL: &#60;a href=&#34;http://thehoustonfreethinkers.com/hft&#34; rel=&#34;nofollow&#34;&#62;http://thehoustonfreethinkers.com/hft&#60;/a&#62;&#60;br /&#62;
Screenshot: &#60;img src=&#34;http://image.bayimg.com/7d6e303c48e79ef8d7b520b61e63b78e925fc3a1.jpg&#34;&#62;&#60;/p&#62;
&#60;p&#62;Just started doing this today. Any ideas?&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;div class=&#34;big-preview single-big&#34;&#38;gt;&#60;br /&#62;
&#38;lt;span class=&#34;embed-youtube&#34; style=&#34;text-align:center; display: block;&#34;&#38;gt;&#60;br /&#62;
&#38;lt;iframe class=&#34;youtube-player&#34; type=&#34;text/html&#34; width=&#34;1500&#34; height=&#34;874&#34; src=&#34;http://www.youtube.com/embed/Pdk0z_rSt_g?version=3&#38;amp;rel=1&#38;amp;fs=1&#38;amp;showsearch=0&#38;amp;showinfo=1&#38;amp;iv_load_policy=1&#38;amp;wmode=transparent&#34; frameborder=&#34;0&#34;&#38;gt;&#38;lt;/iframe&#38;gt;&#60;br /&#62;
&#38;lt;/span&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Embed Tableau Software Dashboard in Propulsion Blog"</title>
			<link>http://www.kriesi.at/support/topic/embed-tableau-software-dashboard-in-propulsion-blog#post-102839</link>
			<pubDate>Sun, 24 Mar 2013 16:12:16 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">102839@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;It looks like its pasted in your blog. I see it fine on the url you provided&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stephanusdekock on "Embed Tableau Software Dashboard in Propulsion Blog"</title>
			<link>http://www.kriesi.at/support/topic/embed-tableau-software-dashboard-in-propulsion-blog#post-102615</link>
			<pubDate>Fri, 22 Mar 2013 10:41:18 +0000</pubDate>
			<dc:creator>stephanusdekock</dc:creator>
			<guid isPermaLink="false">102615@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm struggling to embed an interactive Tableau Software Dashboard on my blog. It just doesn't seem to work. It shows a blank space where the embedded visualisation is supposed to be.&#60;/p&#62;
&#60;p&#62;I'm trying to embed the following visualisation...&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://tableausoftware.com/public/gallery/tech-ipos-finish-year-strong&#34; rel=&#34;nofollow&#34;&#62;http://tableausoftware.com/public/gallery/tech-ipos-finish-year-strong&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;... by copy-pasting the following HTML embed code into my blog:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://public.tableausoftware.com/javascripts/api/viz_v1.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;div class=&#38;quot;tableauPlaceholder&#38;quot; style=&#38;quot;width:554px; height:869px;&#38;quot;&#38;gt;
	&#38;lt;noscript&#38;gt;
	&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;&#38;lt;img alt=&#38;quot;Tech Leads Capital Raised in 2011 &#38;quot; src=&#38;quot;http://public.tableausoftware.com/static/images/te/techcapital_in7/Dashboard1/1_rss.png&#38;quot;/&#38;gt;&#38;lt;/a&#38;gt;
	&#38;lt;/noscript&#38;gt;
	&#38;lt;object class=&#38;quot;tableauViz&#38;quot; width=&#38;quot;554&#38;quot; height=&#38;quot;869&#38;quot; style=&#38;quot;display:none;&#38;quot;&#38;gt;&#38;lt;param name=&#38;quot;host_url&#38;quot; value=&#38;quot;http%3A%2F%2Fpublic.tableausoftware.com%2F&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;site_root&#38;quot; value=&#38;quot;&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;name&#38;quot; value=&#38;quot;techcapital_in7/Dashboard1&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;tabs&#38;quot; value=&#38;quot;no&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;toolbar&#38;quot; value=&#38;quot;yes&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;static_image&#38;quot; value=&#38;quot;http://public.tableausoftware.com/static/images/te/techcapital_in7/Dashboard1/1.png&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;animate_transition&#38;quot; value=&#38;quot;yes&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;display_static_image&#38;quot; value=&#38;quot;yes&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;display_spinner&#38;quot; value=&#38;quot;yes&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;display_overlay&#38;quot; value=&#38;quot;yes&#38;quot;/&#38;gt;&#38;lt;param name=&#38;quot;display_count&#38;quot; value=&#38;quot;yes&#38;quot;/&#38;gt;&#38;lt;/object&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;div style=&#38;quot;width:554px;height:22px;padding:0px 10px 0px 0px;color:black;font:normal 8pt verdana,helvetica,arial,sans-serif;&#38;quot;&#38;gt;
	&#38;lt;div style=&#38;quot;float:right; padding-right:8px;&#38;quot;&#38;gt;
		&#38;lt;a href=&#38;quot;http://www.tableausoftware.com/public/about-tableau-products?ref=http://public.tableausoftware.com/views/techcapital_in7/Dashboard1&#38;quot;&#38;gt;Learn About Tableau&#38;lt;/a&#38;gt;
	&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I'm not really a web developer, so please ensure that your instructions on how to get this to work are detailed and easy to understand.&#60;/p&#62;
&#60;p&#62;Many thanks,&#60;/p&#62;
&#60;p&#62;Stephanus
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mniemann on "responsive &#124; vimeo embed &#124; letterbox issue"</title>
			<link>http://www.kriesi.at/support/topic/responsive-vimeo-embed-letterbox-issue#post-97109</link>
			<pubDate>Sun, 17 Feb 2013 11:44:34 +0000</pubDate>
			<dc:creator>mniemann</dc:creator>
			<guid isPermaLink="false">97109@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Found a solution on the web:&#60;/p&#62;
&#60;p&#62;1. Embed the video using:&#60;/p&#62;
&#60;p&#62;&#38;lt;div class=&#34;video&#34;&#38;gt;&#60;br /&#62;
         &#38;lt;iframe src=&#34;http://player.vimeo.com/video/59653868&#34; width=&#34;720&#34; height=&#34;405&#34; frameborder=&#34;0&#34; webkitAllowFullScreen mozallowfullscreen allowFullScreen&#38;gt;&#38;lt;/iframe&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#60;/p&#62;
&#60;p&#62;2. Add adjustment to the grid.css:&#60;br /&#62;
@media only screen and (max-width: 767px) {&#60;br /&#62;
.....&#60;br /&#62;
.video embed, .video object, .video iframe {width: 300px; height: 166px;}&#60;br /&#62;
.....&#60;/p&#62;
&#60;p&#62;and&#60;/p&#62;
&#60;p&#62;@media only screen and (min-width: 480px) and (max-width: 767px) {&#60;br /&#62;
.....&#60;br /&#62;
.video embed, .video object, .video iframe {width: 420px; height: 231px;}&#60;br /&#62;
.....&#60;/p&#62;
&#60;p&#62;Works fine. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mniemann on "responsive &#124; vimeo embed &#124; letterbox issue"</title>
			<link>http://www.kriesi.at/support/topic/responsive-vimeo-embed-letterbox-issue#post-97035</link>
			<pubDate>Sat, 16 Feb 2013 11:08:36 +0000</pubDate>
			<dc:creator>mniemann</dc:creator>
			<guid isPermaLink="false">97035@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;I have a problem with the responsiveness of vimeo embeded videos.&#60;/p&#62;
&#60;p&#62;It's easy to embed the videos via iframe and for normal screens it works well.&#60;br /&#62;
But when I change the screen resolution e.g. while viewing on my iPhone the embeded vimeo videos get an ugly letterbox. (Black bars at the top and the bottom.)&#60;/p&#62;
&#60;p&#62;I tried several other methods to embed the vids. But nothings seems to work.&#60;/p&#62;
&#60;p&#62;For reference:&#60;br /&#62;
&#60;a href=&#34;http://maximilian-niemann.de/main/&#34; rel=&#34;nofollow&#34;&#62;http://maximilian-niemann.de/main/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Would appreciate if somebody is able to help me. :)&#60;/p&#62;
&#60;p&#62;Best regards from Germany&#60;br /&#62;
Max
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Spotify embedded in post problem"</title>
			<link>http://www.kriesi.at/support/topic/spotify-embedded-in-post-problem#post-95899</link>
			<pubDate>Fri, 08 Feb 2013 20:54:33 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">95899@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad we could help :)&#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>mudskippir on "Spotify embedded in post problem"</title>
			<link>http://www.kriesi.at/support/topic/spotify-embedded-in-post-problem#post-95870</link>
			<pubDate>Fri, 08 Feb 2013 16:44:46 +0000</pubDate>
			<dc:creator>mudskippir</dc:creator>
			<guid isPermaLink="false">95870@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ignore me, just tried another computer. This will do!&#60;/p&#62;
&#60;p&#62;Thank you guys for your help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mudskippir on "Spotify embedded in post problem"</title>
			<link>http://www.kriesi.at/support/topic/spotify-embedded-in-post-problem#post-95865</link>
			<pubDate>Fri, 08 Feb 2013 16:29:09 +0000</pubDate>
			<dc:creator>mudskippir</dc:creator>
			<guid isPermaLink="false">95865@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin, &#60;/p&#62;
&#60;p&#62;On my other blog site that I tested the embed code in, it looks the way yours looks, which is totally fine. Unfortunately, the way it looks in the blog post in this thread is not only limited in the ability to size/resize, but it also has that white space that closes up on rollover. Can you tell me why that is happening? &#60;/p&#62;
&#60;p&#62;It isn't happening on your page that you linked to and it doesn't happen on my other blog, here: &#60;a href=&#34;http://www.christypessagno.com/blog/?p=385&#34; rel=&#34;nofollow&#34;&#62;http://www.christypessagno.com/blog/?p=385&#60;/a&#62; pw: spotify&#60;/p&#62;
&#60;p&#62;If I could at least get this rollover fixed, I'll be happy. &#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Christy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Spotify embedded in post problem"</title>
			<link>http://www.kriesi.at/support/topic/spotify-embedded-in-post-problem#post-95841</link>
			<pubDate>Fri, 08 Feb 2013 15:35:26 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">95841@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Christy,&#60;/p&#62;
&#60;p&#62;I think the actual spotify code has something to do with it. If you open your embed url alone and adjust the window to various sizes it seems to limit the height in some cases and let it expand full height+width in others.&#60;/p&#62;
&#60;p&#62;I made a test page with just the spotify iframe and it wont let you change the height if the height+width is to far in proportion. It may just be something you have to tweak and get to a tolerable size.&#60;/p&#62;
&#60;p&#62;For example, I used 780px height and 500px width which limited the height to 580px. If I bumped up the width to 550px it expanded the height to 549px (of the actual player inside the iframe) while the iframe itself was what I set originally (780px).&#60;/p&#62;
&#60;p&#62;I'll keep my test live for you here so you can see what I mean:&#60;br /&#62;
&#60;code&#62;removed&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mudskippir on "Spotify embedded in post problem"</title>
			<link>http://www.kriesi.at/support/topic/spotify-embedded-in-post-problem#post-95738</link>
			<pubDate>Thu, 07 Feb 2013 18:42:32 +0000</pubDate>
			<dc:creator>mudskippir</dc:creator>
			<guid isPermaLink="false">95738@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael, &#60;/p&#62;
&#60;p&#62;I added this to the CSS style sheet and emptied my browser history and cache from the earliest possible point. The embed still looks funky and the embed doesn't reflect any size changes or directions. &#60;/p&#62;
&#60;p&#62;I hope this isn't a lost cause as this is a really integral part of our website and we want to be embedding this player once a month. &#60;/p&#62;
&#60;p&#62;Thanks for your help,&#60;br /&#62;
Christy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Spotify embedded in post problem"</title>
			<link>http://www.kriesi.at/support/topic/spotify-embedded-in-post-problem#post-95586</link>
			<pubDate>Thu, 07 Feb 2013 06:14:54 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">95586@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I thought what Dude said will already fix the issue but try to add this on your custom.css.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#mainContainer {
min-height: 400px !important;
}

.postid-1529 iframe {
min-height: 550px !important;
}

.jspContainer {
min-height: 600px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I hope this will adjust the height. Actually, try to do what Dude posted earlier then remove browser history.cache then reload the page. &#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mudskippir on "Spotify embedded in post problem"</title>
			<link>http://www.kriesi.at/support/topic/spotify-embedded-in-post-problem#post-95541</link>
			<pubDate>Wed, 06 Feb 2013 22:32:44 +0000</pubDate>
			<dc:creator>mudskippir</dc:creator>
			<guid isPermaLink="false">95541@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dude, &#60;/p&#62;
&#60;p&#62;I replaced the code like you suggested and it doesn't work. :( &#60;/p&#62;
&#60;p&#62;Take a look:&#60;br /&#62;
&#60;a href=&#34;http://www.theybklyn.com/2013/02/jan2013music/&#34; rel=&#34;nofollow&#34;&#62;http://www.theybklyn.com/2013/02/jan2013music/&#60;/a&#62;&#60;br /&#62;
pw: spotify&#60;/p&#62;
&#60;p&#62;It seems like it did format it to the default width, but the height is still being overridden by something. Here is the only coding in the text section of the post:&#60;br /&#62;
&#38;lt;iframe style=&#34;font-size: 13px; line-height: 19px;&#34; src=&#34;https://embed.spotify.com/?uri=spotify:user:mudskippir:playlist:6DyxOsAbolEybOXjUMyg8i&#34; height=&#34;600&#34; width=&#34;250&#34; frameborder=&#34;0&#34;&#38;gt;&#38;lt;/iframe&#38;gt;&#60;/p&#62;
&#60;p&#62;I went to change the height to 400 and all it did was remove the white space you see under it in it's current state. &#60;/p&#62;
&#60;p&#62;The weird white space that closes up when you rollover the player is also still there. &#60;/p&#62;
&#60;p&#62;Any other suggestions? &#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Christy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Spotify embedded in post problem"</title>
			<link>http://www.kriesi.at/support/topic/spotify-embedded-in-post-problem#post-94927</link>
			<pubDate>Mon, 04 Feb 2013 07:16:37 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">94927@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Probably Kriesi's iframe fix &#34;adjusts&#34; the spotify iframe dimensions. You can try to remove the fix - open up js/avia.js and replace following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;avia_small_fixes(container);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//avia_small_fixes(container);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Nick on "Video embed is a wonky size"</title>
			<link>http://www.kriesi.at/support/topic/video-embed-is-a-wonky-size#post-94866</link>
			<pubDate>Sun, 03 Feb 2013 22:49:01 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">94866@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please clear out your cache, I am using Chrome and see this &#60;a href=&#34;http://www.clipular.com/c?1956139=RnlKUbOwFQoT6Y8PMPdPeYN3ong&#34; rel=&#34;nofollow&#34;&#62;http://www.clipular.com/c?1956139=RnlKUbOwFQoT6Y8PMPdPeYN3ong&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;On Firefox it looks identical to the snapshot.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mudskippir on "Video embed is a wonky size"</title>
			<link>http://www.kriesi.at/support/topic/video-embed-is-a-wonky-size#post-94854</link>
			<pubDate>Sun, 03 Feb 2013 20:11:11 +0000</pubDate>
			<dc:creator>mudskippir</dc:creator>
			<guid isPermaLink="false">94854@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;Chrome and Firefox.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Video embed is a wonky size"</title>
			<link>http://www.kriesi.at/support/topic/video-embed-is-a-wonky-size#post-94849</link>
			<pubDate>Sun, 03 Feb 2013 19:29:19 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">94849@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Your vimeo videos look to me to be 600x337 . What browser are you using?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mudskippir on "Spotify embedded in post problem"</title>
			<link>http://www.kriesi.at/support/topic/spotify-embedded-in-post-problem#post-94700</link>
			<pubDate>Sat, 02 Feb 2013 19:15:31 +0000</pubDate>
			<dc:creator>mudskippir</dc:creator>
			<guid isPermaLink="false">94700@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;I am using the Eunoia theme. I am attempting to make a blog post that I am embedding a playlist from Spotify into. &#60;/p&#62;
&#60;p&#62;Here is the page:&#60;br /&#62;
&#60;a href=&#34;http://www.theybklyn.com/2013/02/jan2013music/&#34; rel=&#34;nofollow&#34;&#62;http://www.theybklyn.com/2013/02/jan2013music/&#60;/a&#62;&#60;br /&#62;
pw: spotify&#60;/p&#62;
&#60;p&#62;Here is the embed code I am using:&#60;br /&#62;
&#38;lt;iframe src=&#34;https://embed.spotify.com/?uri=spotify:user:mudskippir:playlist:6DyxOsAbolEybOXjUMyg8i&#34; height=&#34;380&#34; width=&#34;250&#34; frameborder=&#34;0&#34;&#38;gt;&#38;lt;/iframe&#38;gt;&#60;/p&#62;
&#60;p&#62;There are TWO issues, the first being that I can't resize the player. It will always default to the full width of the blog, as you can see in the example link above. I tried using the shortcode/column solution as seen here: &#60;a href=&#34;http://www.kriesi.at/support/topic/incarnation-theme-style-overwriting-my-page-code#post-93959&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/incarnation-theme-style-overwriting-my-page-code#post-93959&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;That worked to make my player fit inside half of the blog, but height of the player was way less in pixels and I was unable to adjust it even from the embed code. &#60;/p&#62;
&#60;p&#62;The second issue is the white space below the top part of the player that closes up when you roll over the player. I've posted the same embed code on another blog I have and the player embeds without the dreaded white space opening and closing. &#60;/p&#62;
&#60;p&#62;Help, please!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Video embed is a wonky size"</title>
			<link>http://www.kriesi.at/support/topic/video-embed-is-a-wonky-size#post-94631</link>
			<pubDate>Sat, 02 Feb 2013 03:20:13 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">94631@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm not sure but I guess a js script from js &#38;gt; avia.js might be causing this.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// -------------------------------------------------------------------------------------------
// small js fixes for pixel perfection :)
// -------------------------------------------------------------------------------------------
function avia_small_fixes(container)
{
	if(!jQuery.support.opacity)
	{
		jQuery(&#38;#39;.image_overlay_effect&#38;#39;, container).css({&#38;#39;background-image&#38;#39;:&#38;#39;none&#38;#39;});
	}

	setTimeout(function()
	{
		jQuery(&#38;#39;.twitter-tweet-rendered&#38;#39;, container).attr(&#38;#39;style&#38;#39;,&#38;quot;&#38;quot;);
	}, 500);

	var win		= jQuery(window),
		iframes = jQuery(&#38;#39; iframe:not(.slideshow iframe):not( iframe.no_resize)&#38;#39;, container),
		adjust_iframes = function()
		{
			iframes.each(function(){

				var iframe = jQuery(this), frame_parent_w = iframe.parent().width(), proportions = 16/9;

				if(this.width &#38;amp;&#38;amp; this.height)
				{
					proportions = Math.round(this.width / this.height * 1000) / 1000;
					iframes.css({width:frame_parent_w, height: frame_parent_w / proportions});
				}

			});
		};

		adjust_iframes();
		win.smartresize(adjust_iframes);

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Let me tag the rest of the support team. See if they have any idea.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mudskippir on "Video embed is a wonky size"</title>
			<link>http://www.kriesi.at/support/topic/video-embed-is-a-wonky-size#post-94427</link>
			<pubDate>Thu, 31 Jan 2013 23:45:40 +0000</pubDate>
			<dc:creator>mudskippir</dc:creator>
			<guid isPermaLink="false">94427@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Can someone please help me answer this question? &#60;/p&#62;
&#60;p&#62;re: &#60;/p&#62;
&#60;p&#62;Can you tell me how to make my embed video sizes not override new videos that are embedded? See above questions for more details.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mudskippir on "Video embed is a wonky size"</title>
			<link>http://www.kriesi.at/support/topic/video-embed-is-a-wonky-size#post-94386</link>
			<pubDate>Thu, 31 Jan 2013 18:06:17 +0000</pubDate>
			<dc:creator>mudskippir</dc:creator>
			<guid isPermaLink="false">94386@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;A solution: &#60;/p&#62;
&#60;p&#62;So on the blog page, the post at the bottom of the page has a Vimeo video embedded that had a 77px high setting due to it being a 360 degree video, weird format. When we changed those settings to 281px high (and thereby sacrifice the look of the video on our blog), it fixed the most recent embedded video. &#60;/p&#62;
&#60;p&#62;Even though my original question was solved, can you still tell me if you know why the Beneath 360 video settings were overriding our most recent Out of Order trailer settings? I'd prefer to pick individual sizes as we post lots of different videos. &#60;/p&#62;
&#60;p&#62;Thank you.&#60;br /&#62;
Christy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mudskippir on "Video embed is a wonky size"</title>
			<link>http://www.kriesi.at/support/topic/video-embed-is-a-wonky-size#post-94385</link>
			<pubDate>Thu, 31 Jan 2013 17:59:27 +0000</pubDate>
			<dc:creator>mudskippir</dc:creator>
			<guid isPermaLink="false">94385@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there, &#60;/p&#62;
&#60;p&#62;I have a 16:9 video embedded on my blog from Vimeo. Here's the embed code that I'm using in the post:&#60;br /&#62;
&#38;lt;iframe src=&#34;http://player.vimeo.com/video/51092163?color=ff9933&#34; width=&#34;500&#34; height=&#34;281&#34; frameborder=&#34;0&#34; webkitAllowFullScreen mozallowfullscreen allowFullScreen&#38;gt;&#38;lt;/iframe&#38;gt;&#60;/p&#62;
&#60;p&#62;And here is the page:&#60;br /&#62;
&#60;a href=&#34;http://www.theybklyn.com/blog/&#34; rel=&#34;nofollow&#34;&#62;http://www.theybklyn.com/blog/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Notice that on the page, despite my embed code saying that the height should be 281px high, my embedded video is showing up at 77px high. &#60;/p&#62;
&#60;p&#62;Any idea why this might be happening? &#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
Christy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "&#34;Link Manually&#34; Not Working"</title>
			<link>http://www.kriesi.at/support/topic/link-manually-not-working#post-91086</link>
			<pubDate>Fri, 11 Jan 2013 06:30:52 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">91086@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Glad it is fixed.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brentbarbano on "&#34;Link Manually&#34; Not Working"</title>
			<link>http://www.kriesi.at/support/topic/link-manually-not-working#post-91083</link>
			<pubDate>Fri, 11 Jan 2013 04:35:51 +0000</pubDate>
			<dc:creator>brentbarbano</dc:creator>
			<guid isPermaLink="false">91083@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ahhh gotcha. Just the letter 's' huh? Thanks so much Ismael. You've been amazing throughout all of my questions. I really appreciate the help!&#60;/p&#62;
&#60;p&#62;-Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "&#34;Link Manually&#34; Not Working"</title>
			<link>http://www.kriesi.at/support/topic/link-manually-not-working#post-90898</link>
			<pubDate>Thu, 10 Jan 2013 08:04:04 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">90898@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Brent,&#60;/p&#62;
&#60;p&#62;You can check it on your site now. :)&#60;/p&#62;
&#60;p&#62;In your portfolio item I just changed the &#60;strong&#62;Apply link to the image?&#60;/strong&#62; from &#60;strong&#62;Embed Video when image is clicked&#60;/strong&#62; to &#60;strong&#62;Link Manually&#60;/strong&#62; (just like how you've set it before). Placed your vimeo link and changed https to http (this is what caused the lightbox issue).&#60;/p&#62;
&#60;p&#62;I changed your video link from: &#60;a href=&#34;https://vimeo.com/xxxx&#34; rel=&#34;nofollow&#34;&#62;https://vimeo.com/xxxx&#60;/a&#62; to &#60;a href=&#34;http://vimeo.com/xxxx&#34; rel=&#34;nofollow&#34;&#62;http://vimeo.com/xxxx&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
