<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Issues with Youtube Videos being re-sized in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/171743#M4413</link>
    <description>&lt;P&gt;Where do you find the module.css? Is it in design manager?&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jan 2018 13:04:45 GMT</pubDate>
    <dc:creator>MRF</dc:creator>
    <dc:date>2018-01-16T13:04:45Z</dc:date>
    <item>
      <title>Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/2055#M215</link>
      <description>&lt;P&gt;Hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am attempting to create a landing page with multiple Youtube videos on to be used as a step by step guide.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The videos show up fine in the editor view but when previewed/sent live, the videos shrink and go into a letterbox shape.&amp;nbsp; Regardless of what I try within the module, nothing seems to fix it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone encountered this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any help in advance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2016 09:47:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/2055#M215</guid>
      <dc:creator>Wills9797</dc:creator>
      <dc:date>2016-12-05T09:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/2058#M216</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/1003"&gt;@Wills9797&lt;/a&gt;&amp;nbsp;are you able to provide links to both the page and the YouTube video you are using in this case?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2016 10:15:49 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/2058#M216</guid>
      <dc:creator>roisinkirby</dc:creator>
      <dc:date>2016-12-05T10:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/2070#M219</link>
      <description>&lt;P&gt;The common issue I run into with this is due to a bug in HubSpot's default "modules.css"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue is with the following starting at line 17 in the modules.css file:&lt;/P&gt;&lt;PRE&gt;/* Embed Container (iFrame, Object, Embed) */&lt;BR /&gt;.hs-responsive-embed {&lt;BR /&gt; position: relative;&lt;BR /&gt; height: auto;&lt;BR /&gt; overflow: hidden;&lt;BR /&gt; padding-top: 0;&lt;BR /&gt; padding-left: 0;&lt;BR /&gt; padding-right: 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;.hs-responsive-embed iframe, .hs-responsive-embed object, .hs-responsive-embed embed {&lt;BR /&gt; width: 100%;&lt;BR /&gt; height: 100%;&lt;BR /&gt; border: 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;.hs-responsive-embed,&lt;BR /&gt;.hs-responsive-embed.hs-responsive-embed-youtube,&lt;BR /&gt;.hs-responsive-embed.hs-responsive-embed-wistia,&lt;BR /&gt;.hs-responsive-embed.hs-responsive-embed-vimeo {&lt;BR /&gt; &lt;FONT color="#FF0000"&gt;padding-bottom: 2%;&lt;/FONT&gt;&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;To fix this, just add the following in your own stylesheet to overwrite these rules:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;/* Embed Container (iFrame, Object, Embed) */
.hs-responsive-embed {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}
.hs-responsive-embed iframe,
.hs-responsive-embed object,
.hs-responsive-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.hs-responsive-embed,
.hs-responsive-embed.hs-responsive-embed-youtube,
.hs-responsive-embed.hs-responsive-embed-wistia,
.hs-responsive-embed.hs-responsive-embed-vimeo {
    &lt;FONT color="#339966"&gt;padding-bottom: 56.25%;&lt;/FONT&gt;
}&lt;/PRE&gt;&lt;P&gt;Alternatively, you can replace the default "modules.css" with your own CompanyModules.css as recommended in &lt;A href="http://designers.hubspot.com/docs/tools/boilerplate-css" target="_self"&gt;HubSpot's Boilerplate CSS&lt;/A&gt;. Also, if you have embeds that have aspect ratios other than 16x9 you might want to look into using something like &lt;A href="http://fitvidsjs.com/" target="_self"&gt;fitvids.js&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2016 17:50:00 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/2070#M219</guid>
      <dc:creator>stefen</dc:creator>
      <dc:date>2016-12-05T17:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/2089#M221</link>
      <description>&lt;P&gt;I ran into the same issue a couple month's ago and can comfirm that &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/133"&gt;@stefen&lt;/a&gt; suggestion will solve the issue.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2016 17:58:13 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/2089#M221</guid>
      <dc:creator>ndwilliams3</dc:creator>
      <dc:date>2016-12-05T17:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/171743#M4413</link>
      <description>&lt;P&gt;Where do you find the module.css? Is it in design manager?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2018 13:04:45 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/171743#M4413</guid>
      <dc:creator>MRF</dc:creator>
      <dc:date>2018-01-16T13:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/171799#M4414</link>
      <description>&lt;P&gt;Yes it is in Design Manager in the theme Hubspot created for you. It will be in Coded Files / Custom / page / Your_Theme_Folder&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2018 15:18:01 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/171799#M4414</guid>
      <dc:creator>ndwilliams3</dc:creator>
      <dc:date>2018-01-16T15:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/175394#M4483</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is anyone else having an issue inserting a video via a youtube link into their blog posts and the video being resized? Is there a fix for blogs not just landing pages?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 20:24:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/175394#M4483</guid>
      <dc:creator>aburkart</dc:creator>
      <dc:date>2018-01-25T20:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/183898#M5360</link>
      <description>&lt;P&gt;I get the same issue with YouTube video embeds on the blog.&lt;BR /&gt;It's a letterbox.&lt;BR /&gt;I added the code to the main style sheet, and it went even thinner!&lt;BR /&gt;&lt;BR /&gt;HELP!&lt;/P&gt;</description>
      <pubDate>Sat, 31 Mar 2018 12:51:08 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/183898#M5360</guid>
      <dc:creator>Jon-Law</dc:creator>
      <dc:date>2018-03-31T12:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/206419#M8237</link>
      <description>&lt;P&gt;Hi Will,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We usually use responsive tables (scaffolding) for any kind of videos to make sure they look great on desktop and mobile.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's an article that explains how to use it:&lt;/P&gt;&lt;P&gt;&lt;A href="http://getbootstrap.com/2.3.2/scaffolding.html" target="_blank"&gt;http://getbootstrap.com/2.3.2/scaffolding.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.nextinymarketing.com/seo" target="_blank"&gt;This page&lt;/A&gt;&amp;nbsp;is an example of 2 videos side by side using a responsible&amp;nbsp;table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code usually goes like this, where AAAA would be the code of your first youtube video and BBBB the second one. Now, if you want to have margings and space between them you can add more span sections. Just remember to make them all add to 12.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;6-6&lt;/P&gt;&lt;P&gt;4-4-4&lt;/P&gt;&lt;P&gt;1-5-5-1&lt;/P&gt;&lt;P&gt;1-4-2-4-1&lt;/P&gt;&lt;P&gt;and so on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you just want to have one video per row, you can just create 1-10-1 rows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;div class="row-fluid"&amp;gt;

&amp;lt;div class="span6"&amp;gt;
AAAAA
&amp;lt;/div&amp;gt;

&amp;lt;div class="span6"&amp;gt;
BBBBB
&amp;lt;/div&amp;gt;

&amp;lt;/div&amp;gt;&lt;/PRE&gt;&lt;P&gt;I hope this helps. Let me know if you have any questions.&lt;/P&gt;&lt;P&gt;G&lt;/P&gt;</description>
      <pubDate>Wed, 12 Sep 2018 12:51:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/206419#M8237</guid>
      <dc:creator>gabriel-nextiny</dc:creator>
      <dc:date>2018-09-12T12:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Youtube Videos being re-sized</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/875853#M36632</link>
      <description>&lt;P&gt;hi, its 7 years later now 2023, and i experience same issue. i embed the url from teh youtube video into a blog and it shrinks the framesize / looks unprofessional.&lt;/P&gt;&lt;P&gt;Thanks if you fix this.&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2023 11:30:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Issues-with-Youtube-Videos-being-re-sized/m-p/875853#M36632</guid>
      <dc:creator>MKoemans</dc:creator>
      <dc:date>2023-11-07T11:30:15Z</dc:date>
    </item>
  </channel>
</rss>

