<?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 Code Module not working in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Code-Module-not-working/m-p/196344#M6715</link>
    <description>&lt;P&gt;I have a module with the following code from code pen :&amp;nbsp;&lt;A href="https://codepen.io/MiXT4PE/pen/JZBjog?page=1&amp;amp;" target="_blank"&gt;https://codepen.io/MiXT4PE/pen/JZBjog?page=1&amp;amp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It works when I preview the module but won't work on my actual page&amp;nbsp;&lt;A href="http://cloud.baass.com/cconnect2018-v2?hs_preview=SpZcGQvQ-5934907902" target="_blank"&gt;http://cloud.baass.com/cconnect2018-v2?hs_preview=SpZcGQvQ-5934907902&lt;/A&gt;&lt;/P&gt;&lt;P&gt;but I cant get the module to work. Any help would be great.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en" &amp;gt;

&amp;lt;head&amp;gt;


&amp;lt;!--
Copyright (c) 2018 by Leon Heess (https://codepen.io/MiXT4PE/pen/JZBjog)


Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--&amp;gt;


  &amp;lt;meta charset="UTF-8"&amp;gt;
  &amp;lt;title&amp;gt;Flipping Hexagons&amp;lt;/title&amp;gt;
  &amp;lt;style&amp;gt;
  html, body {
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", "sans-serif";
  background-color: #1c1c1c;
  height: 100%;
}

.wrapper {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#hexGrid {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  padding-bottom: 5.5%;
  overflow: hidden;
  list-style-type: none;
}

.hex {
  position: relative;
  visibility: hidden;
  outline: 1px solid transparent;
  width: 25%;
}

.hex:nth-child(7n + 5) {
  margin-left: 12.5%;
}

.hex::after {
  content: "";
  display: block;
  padding-bottom: 86.602%;
}

.hexFront, .hexBack {
  perspective: 800;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  backface-visibility: hidden;
  transition: transform 1s ease-out, opacity 0.5s ease-out;
}

.hexBack {
  opacity: 0;
  transform: rotateY(180deg);
}

.hexIn {
  position: absolute;
  width: 96%;
  padding-bottom: 110.851%;
  margin: 0 2%;
  overflow: hidden;
  visibility: hidden;
  outline: 1px solid transparent;
  transform: rotate3d(0, 0, 1, -60deg) skewY(30deg);
}

.hexInner {
  position: absolute;
  visibility: visible;
  outline: 1px solid transparent;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: skewY(-30deg) rotate3d(0, 0, 1, 60deg);
}

.hexInner img {
  left: -100%;
  right: -100%;
  width: auto;
  height: 100%;
  margin: 0 auto;
  transform: rotate3d(0, 0, 0, 0deg);
  filter: grayscale(100%);
  transition: 4s;
}

.hexInner img:hover {
  filter: grayscale(0%);
  transition: 0s;
}

.hexInner p {
  color: black;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2vw;
  margin: 0;
}
  &amp;lt;/style&amp;gt;
  
  
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;

  &amp;lt;div class="wrapper"&amp;gt;
  &amp;lt;ul id="hexGrid"&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
  &amp;lt;/ul&amp;gt;
&amp;lt;/div&amp;gt;
  &amp;lt;script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'&amp;gt;&amp;lt;/script&amp;gt;

  

    &amp;lt;script&amp;gt;
    $(document).ready(function() {
  "use strict";
  $(".hexFront, .hexBack").click(function() {
    $(".hexFront")
      .css({ transform: "rotateY(0deg)", opacity: 1 })
      .next()
      .css({ transform: "rotateY(180deg)", opacity: 0 })
    
    $(this)
      .css({ transform: "rotateY(180deg)", opacity: 0 })
      .next()
      .css({ transform: "rotateY(0deg)", opacity: 1 })
      .end().prev()
      .css({ transform: "rotateY(0deg)", opacity: 1 });
  });
});
    &amp;lt;/script&amp;gt;




&amp;lt;/body&amp;gt;

&amp;lt;/html&amp;gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 05 Jul 2018 17:23:32 GMT</pubDate>
    <dc:creator>choltzman</dc:creator>
    <dc:date>2018-07-05T17:23:32Z</dc:date>
    <item>
      <title>Code Module not working</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Code-Module-not-working/m-p/196344#M6715</link>
      <description>&lt;P&gt;I have a module with the following code from code pen :&amp;nbsp;&lt;A href="https://codepen.io/MiXT4PE/pen/JZBjog?page=1&amp;amp;" target="_blank"&gt;https://codepen.io/MiXT4PE/pen/JZBjog?page=1&amp;amp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It works when I preview the module but won't work on my actual page&amp;nbsp;&lt;A href="http://cloud.baass.com/cconnect2018-v2?hs_preview=SpZcGQvQ-5934907902" target="_blank"&gt;http://cloud.baass.com/cconnect2018-v2?hs_preview=SpZcGQvQ-5934907902&lt;/A&gt;&lt;/P&gt;&lt;P&gt;but I cant get the module to work. Any help would be great.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en" &amp;gt;

&amp;lt;head&amp;gt;


&amp;lt;!--
Copyright (c) 2018 by Leon Heess (https://codepen.io/MiXT4PE/pen/JZBjog)


Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--&amp;gt;


  &amp;lt;meta charset="UTF-8"&amp;gt;
  &amp;lt;title&amp;gt;Flipping Hexagons&amp;lt;/title&amp;gt;
  &amp;lt;style&amp;gt;
  html, body {
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", "sans-serif";
  background-color: #1c1c1c;
  height: 100%;
}

.wrapper {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#hexGrid {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  padding-bottom: 5.5%;
  overflow: hidden;
  list-style-type: none;
}

.hex {
  position: relative;
  visibility: hidden;
  outline: 1px solid transparent;
  width: 25%;
}

.hex:nth-child(7n + 5) {
  margin-left: 12.5%;
}

.hex::after {
  content: "";
  display: block;
  padding-bottom: 86.602%;
}

.hexFront, .hexBack {
  perspective: 800;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  backface-visibility: hidden;
  transition: transform 1s ease-out, opacity 0.5s ease-out;
}

.hexBack {
  opacity: 0;
  transform: rotateY(180deg);
}

.hexIn {
  position: absolute;
  width: 96%;
  padding-bottom: 110.851%;
  margin: 0 2%;
  overflow: hidden;
  visibility: hidden;
  outline: 1px solid transparent;
  transform: rotate3d(0, 0, 1, -60deg) skewY(30deg);
}

.hexInner {
  position: absolute;
  visibility: visible;
  outline: 1px solid transparent;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: skewY(-30deg) rotate3d(0, 0, 1, 60deg);
}

.hexInner img {
  left: -100%;
  right: -100%;
  width: auto;
  height: 100%;
  margin: 0 auto;
  transform: rotate3d(0, 0, 0, 0deg);
  filter: grayscale(100%);
  transition: 4s;
}

.hexInner img:hover {
  filter: grayscale(0%);
  transition: 0s;
}

.hexInner p {
  color: black;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2vw;
  margin: 0;
}
  &amp;lt;/style&amp;gt;
  
  
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;

  &amp;lt;div class="wrapper"&amp;gt;
  &amp;lt;ul id="hexGrid"&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li class="hex"&amp;gt;
      &amp;lt;div class="hexFront"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;img src="https://picsum.photos/500/?random" alt="#" /&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="hexBack"&amp;gt;
        &amp;lt;div class="hexIn"&amp;gt;
          &amp;lt;div class="hexInner"&amp;gt;
            &amp;lt;p&amp;gt; backside &amp;lt;/p&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/li&amp;gt;
  &amp;lt;/ul&amp;gt;
&amp;lt;/div&amp;gt;
  &amp;lt;script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'&amp;gt;&amp;lt;/script&amp;gt;

  

    &amp;lt;script&amp;gt;
    $(document).ready(function() {
  "use strict";
  $(".hexFront, .hexBack").click(function() {
    $(".hexFront")
      .css({ transform: "rotateY(0deg)", opacity: 1 })
      .next()
      .css({ transform: "rotateY(180deg)", opacity: 0 })
    
    $(this)
      .css({ transform: "rotateY(180deg)", opacity: 0 })
      .next()
      .css({ transform: "rotateY(0deg)", opacity: 1 })
      .end().prev()
      .css({ transform: "rotateY(0deg)", opacity: 1 });
  });
});
    &amp;lt;/script&amp;gt;




&amp;lt;/body&amp;gt;

&amp;lt;/html&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Jul 2018 17:23:32 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Code-Module-not-working/m-p/196344#M6715</guid>
      <dc:creator>choltzman</dc:creator>
      <dc:date>2018-07-05T17:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Code Module not working</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Code-Module-not-working/m-p/196347#M6716</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/64933"&gt;@choltzman&lt;/a&gt;&amp;nbsp;- It actually does work, you just have a hidden element that is blocking the mouse action. It's a div called color-overlay. Open chrome inspector and highlight the element like in the screenshot below and hit the delete key to delete that element. Then you will see it works. You can trace back where that element is coming from in the design manager or use CSS to completely hide it from the dom&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="overlay-blocking.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/10327iF43FF5749A9667C1/image-size/large?v=v2&amp;amp;px=999" role="button" title="overlay-blocking.png" alt="overlay-blocking.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;If this answer helped, please, mark as solved &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;tim@belch.io | &lt;A href="https://forms.belch.io" target="_blank"&gt;forms.belch.io&lt;/A&gt; | Design your own Beautiful HubSpot Forms; No coding necessary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Drop by and say Hi to me &lt;A href="http://slack.belch.io/" target="_blank"&gt;on slack&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 17:48:19 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Code-Module-not-working/m-p/196347#M6716</guid>
      <dc:creator>tjoyce</dc:creator>
      <dc:date>2018-07-05T17:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Code Module not working</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Code-Module-not-working/m-p/196350#M6717</link>
      <description>&lt;P&gt;Found the code, but everytime I try deleting it in Google Console the changes don't save. its a drag and drop template in Hubspot so I'm not sure how to find the code in there and save it&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 18:05:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Code-Module-not-working/m-p/196350#M6717</guid>
      <dc:creator>choltzman</dc:creator>
      <dc:date>2018-07-05T18:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Code Module not working</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Code-Module-not-working/m-p/196351#M6718</link>
      <description>&lt;P&gt;No no, it doesn't save in chrome console, that's just a temporary debugging tool to help you find the issue and fix it permanently in your page. you could add this css to your css file&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;.banner .color-overlay {display:none;}&lt;/PRE&gt;&lt;HR /&gt;&lt;P&gt;If this answer helped, please, mark as solved &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;tim@belch.io | &lt;A href="https://forms.belch.io" target="_blank"&gt;forms.belch.io&lt;/A&gt; | Design your own Beautiful HubSpot Forms; No coding necessary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Drop by and say Hi to me &lt;A href="http://slack.belch.io/" target="_blank"&gt;on slack&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 18:08:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Code-Module-not-working/m-p/196351#M6718</guid>
      <dc:creator>tjoyce</dc:creator>
      <dc:date>2018-07-05T18:08:23Z</dc:date>
    </item>
  </channel>
</rss>

