<?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: DND Theme without margings or paddings in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/DND-Theme-without-margings-or-paddings/m-p/345463#M16998</link>
    <description>&lt;P&gt;I tried the "no_wrapper=true" and it did nothing.&amp;nbsp; I looked in the documentation to see if there was another parameter, perhaps something new, but couldn't find anything. I finally decided to revert to using CSS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm just starting to play around with Themes and wrap my head around the structure. I was trying to implement Bootstrap 4 grid and use the dnd_sections to create full width sections using the default background feature of the dnd_section to set the background color or image.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jun 2020 17:45:03 GMT</pubDate>
    <dc:creator>ndwilliams3</dc:creator>
    <dc:date>2020-06-09T17:45:03Z</dc:date>
    <item>
      <title>DND Theme without margings or paddings</title>
      <link>https://community.hubspot.com/t5/CMS-Development/DND-Theme-without-margings-or-paddings/m-p/345359#M16991</link>
      <description>&lt;P&gt;I have created a new area using the following code:&lt;/P&gt;
&lt;PRE&gt;    {%- dnd_area 'main_content' class='', label='Main Content' %}
        {%- dnd_section %}
        {%- end_dnd_section %}
    {%- end_dnd_area %}&lt;/PRE&gt;
&lt;P&gt;and HubSpot creates all of this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capturar.PNG" style="width: 989px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/27790iDB44938917605928/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capturar.PNG" alt="Capturar.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Is there a way to have a no_wrapper parameter?&lt;/P&gt;
&lt;P&gt;I want to remove all of that HTML code.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2020 13:58:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/DND-Theme-without-margings-or-paddings/m-p/345359#M16991</guid>
      <dc:creator>igcorreia</dc:creator>
      <dc:date>2020-06-09T13:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: DND Theme without margings or paddings</title>
      <link>https://community.hubspot.com/t5/CMS-Development/DND-Theme-without-margings-or-paddings/m-p/345368#M16993</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/63707"&gt;@igcorreia&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You and me both! I've been playing around with the new DND. I couldn't find a way to remove the wrapper code to the DND area, so I'm using this CSS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;{%- dnd_area 'main_content' class='body-container', label='Main Content' %}
        {%- dnd_section %}
        {%- end_dnd_section %}
{%- end_dnd_area %}

&amp;lt;style&amp;gt;
.body-container.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.body-container &amp;gt; .row-fluid-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.body-container &amp;gt; .row-fluid-wrapper &amp;gt; .row-fluid {
  margin-left: 0;
  margin-right:0;
}

.body-container &amp;gt; .row-fluid-wrapper &amp;gt; .row-fluid &amp;gt; [class*="span"] {
  padding-left: 0;
  padding-right: 0;
}

&amp;lt;/style&amp;gt;&lt;/PRE&gt;
&lt;P&gt;Let me know if you find a workaround.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2020 14:24:36 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/DND-Theme-without-margings-or-paddings/m-p/345368#M16993</guid>
      <dc:creator>ndwilliams3</dc:creator>
      <dc:date>2020-06-09T14:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: DND Theme without margings or paddings</title>
      <link>https://community.hubspot.com/t5/CMS-Development/DND-Theme-without-margings-or-paddings/m-p/345423#M16997</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/366"&gt;@ndwilliams3&lt;/a&gt;&amp;nbsp; thanks for the quick reply. So there is no other way.&lt;/P&gt;
&lt;P&gt;what I am looking for is to actually remove the unnecessary HTML.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like:&amp;nbsp;&lt;A href="https://designers.hubspot.com/docs/building-blocks/modules/using-modules-in-templates#passing-dicts-to-module-parameters" target="_blank"&gt;https://designers.hubspot.com/docs/building-blocks/modules/using-modules-in-templates#passing-dicts-to-module-parameters&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;no_wrapper=True&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capturar.PNG" style="width: 975px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/27804i98C703350737F9AF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capturar.PNG" alt="Capturar.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2020 15:49:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/DND-Theme-without-margings-or-paddings/m-p/345423#M16997</guid>
      <dc:creator>igcorreia</dc:creator>
      <dc:date>2020-06-09T15:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: DND Theme without margings or paddings</title>
      <link>https://community.hubspot.com/t5/CMS-Development/DND-Theme-without-margings-or-paddings/m-p/345463#M16998</link>
      <description>&lt;P&gt;I tried the "no_wrapper=true" and it did nothing.&amp;nbsp; I looked in the documentation to see if there was another parameter, perhaps something new, but couldn't find anything. I finally decided to revert to using CSS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm just starting to play around with Themes and wrap my head around the structure. I was trying to implement Bootstrap 4 grid and use the dnd_sections to create full width sections using the default background feature of the dnd_section to set the background color or image.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2020 17:45:03 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/DND-Theme-without-margings-or-paddings/m-p/345463#M16998</guid>
      <dc:creator>ndwilliams3</dc:creator>
      <dc:date>2020-06-09T17:45:03Z</dc:date>
    </item>
  </channel>
</rss>

