<?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 Hide background image on mobile device in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Hide-background-image-on-mobile-device/m-p/213959#M9319</link>
    <description>&lt;P&gt;I am trying to hide the background graphic&amp;nbsp;for the top section of this landing page for mobile devices:&lt;/P&gt;&lt;P&gt;&lt;A href="https://go.employstream.com/healthcare" target="_blank"&gt;https://go.employstream.com/healthcare&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 29 Oct 2018 16:20:09 GMT</pubDate>
    <dc:creator>StormieHaller</dc:creator>
    <dc:date>2018-10-29T16:20:09Z</dc:date>
    <item>
      <title>Hide background image on mobile device</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Hide-background-image-on-mobile-device/m-p/213959#M9319</link>
      <description>&lt;P&gt;I am trying to hide the background graphic&amp;nbsp;for the top section of this landing page for mobile devices:&lt;/P&gt;&lt;P&gt;&lt;A href="https://go.employstream.com/healthcare" target="_blank"&gt;https://go.employstream.com/healthcare&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 16:20:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Hide-background-image-on-mobile-device/m-p/213959#M9319</guid>
      <dc:creator>StormieHaller</dc:creator>
      <dc:date>2018-10-29T16:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Hide background image on mobile device</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Hide-background-image-on-mobile-device/m-p/214063#M9332</link>
      <description>&lt;P&gt;Hi there!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A quick fix would be to click into the Settings for your page, scroll down to Advanced Options and paste mobile styling using media queries in the &lt;A href="https://knowledge.hubspot.com/articles/kcs_article/cos-general/how-can-i-add-code-snippets-to-the-head-and-footer-html-of-my-pages" target="_self"&gt;Head HTML&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you're referring to the background image, which would be this code (you can also add a colour instead of "none"):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;style&amp;gt;
  @media (max-width: 479px) {
    .marquee {&lt;BR /&gt;       background: none !important;&lt;BR /&gt;    }
  }
&amp;lt;/style&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But you can also hide the computer image with this code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;style&amp;gt;
  @media (max-width: 479px) {
    #hs_cos_wrapper_module_1540322396670198 {
      display: none !important;
    }
  }
&amp;lt;/style&amp;gt;&lt;/PRE&gt;&lt;P&gt;I hope that helps!&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;A href="http://www.stephanieogaygarcia.com?utm_source=HubSpotCommunity" target="_blank"&gt;&lt;IMG src="https://cdn2.hubspot.net/hubfs/1951013/Logos/stephanieogaygarcialogo_black.png" border="0" alt="Stephanie O'Gay Garcia" width="300" /&gt;&lt;/A&gt;HubSpot Design / Development&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.stephanieogaygarcia.com?utm_source=HubSpotCommunity" target="_blank"&gt;Website&lt;/A&gt; | &lt;A href="http://www.stephanieogaygarcia.com/contact?utm_source=HubSpotCommunity" target="_blank"&gt;Contact&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#32C43F"&gt;&lt;I&gt;If this helped, please mark it as the solution to your question, thanks!&lt;/I&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 21:30:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Hide-background-image-on-mobile-device/m-p/214063#M9332</guid>
      <dc:creator>Stephanie-OG</dc:creator>
      <dc:date>2018-10-29T21:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Hide background image on mobile device</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Hide-background-image-on-mobile-device/m-p/214154#M9357</link>
      <description>&lt;P&gt;Hello! I tried the following code to make the background blue instead of just removing the background all together, but it's not working:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;style&amp;gt; @media (max-width: 479px) { .marquee {&lt;BR /&gt;background-color: #0C2E4E;&lt;BR /&gt;} } &amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The ultimate&amp;nbsp;plan is to&amp;nbsp;include an image of the computer screen in the background image (so it's really large on desktop) and remove the&amp;nbsp;smaller image of the desktop altogether.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 13:50:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Hide-background-image-on-mobile-device/m-p/214154#M9357</guid>
      <dc:creator>StormieHaller</dc:creator>
      <dc:date>2018-10-30T13:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Hide background image on mobile device</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Hide-background-image-on-mobile-device/m-p/214168#M9358</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/7886"&gt;@7storms&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Instead of "background-color" use "background"&amp;nbsp;to replace the image, you'll also want to add an "!important" to force the change, like this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;style&amp;gt;
  @media (max-width: 479px) {
    .marquee {
       background: #0C2E4E !important;
    }
  }
&amp;lt;/style&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;A href="http://www.stephanieogaygarcia.com?utm_source=HubSpotCommunity" target="_blank"&gt;&lt;IMG src="https://cdn2.hubspot.net/hubfs/1951013/Logos/stephanieogaygarcialogo_black.png" border="0" alt="Stephanie O'Gay Garcia" width="300" /&gt;&lt;/A&gt;HubSpot Design / Development&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.stephanieogaygarcia.com?utm_source=HubSpotCommunity" target="_blank"&gt;Website&lt;/A&gt; | &lt;A href="http://www.stephanieogaygarcia.com/contact?utm_source=HubSpotCommunity" target="_blank"&gt;Contact&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#32C43F"&gt;&lt;I&gt;If this helped, please mark it as the solution to your question, thanks!&lt;/I&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 15:08:33 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Hide-background-image-on-mobile-device/m-p/214168#M9358</guid>
      <dc:creator>Stephanie-OG</dc:creator>
      <dc:date>2018-10-30T15:08:33Z</dc:date>
    </item>
  </channel>
</rss>

