<?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: Using set_response_code(404) removes CSS / stylesheet in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1233376#M44736</link>
    <description>&lt;P&gt;Hi &lt;SPAN class="mention" data-mention="@_al"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;and thanks for sharing these additional details.&lt;BR /&gt;&lt;BR /&gt;When using require_css(get_asset_url('../../dist/app.css')), the CSS is added to {{ standard_header_includes }} in the &amp;lt;head&amp;gt;.&lt;BR /&gt;&lt;BR /&gt;When set_response_code(404) triggers the 404 template to render instead of the original template, it seems the CSS requirements from the original template may not be carrying over.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Here are some workarounds you might want to try:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- CSS loaded via require_css() is rendered within {{ standard_header_includes }} in the &amp;lt;head&amp;gt;. When a 404 template is triggered, it may be rendering a different template context that doesn't include the CSS requirements from the original template.&lt;BR /&gt;&lt;BR /&gt;- Ensure your 404 template has its own require_css() call for the stylesheet, rather than relying on inheritance from a base template.&lt;BR /&gt;&lt;BR /&gt;Let's invite some of our Top Experts to this discussion: Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/996002"&gt;@d-lupo&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/537570"&gt;@RubenBurdin&lt;/a&gt;&amp;nbsp;and &lt;SPAN class="mention" data-mention="@sylvain_tirreau"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/601366"&gt;@sylvain_tirreau&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;do you have other suggestions to help &lt;SPAN class="mention" data-mention="@_al"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&lt;/SPAN&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Thanks so much and have a wonderful weekend!&lt;BR /&gt;Bérangère&lt;BR /&gt;&lt;BR /&gt;&lt;I&gt;This post was created with the assistance of AI tools.&lt;/I&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 12 Dec 2025 12:10:12 GMT</pubDate>
    <dc:creator>BérangèreL</dc:creator>
    <dc:date>2025-12-12T12:10:12Z</dc:date>
    <item>
      <title>Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1232279#M44710</link>
      <description>&lt;P&gt;We're using {{ set_response_code(404) }} to manually trigger the 404 page under some circumstances.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This works fine, the 404 response code is set, and the 404-template is rendered instead of the template that triggered the 404.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We're also using&amp;nbsp;{{ require_css(get_asset_url('../../dist/app.css')) }} to add our stylesheet in our base-template. This too works fine obviously.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, for some reason, when we trigger the 404, the app.css is removed from the rendered template.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking at the source code of a manually triggered 404 page, and a regular 404 page (a URL that simply doesn't exist), they look identical except for one missing line which is &amp;lt;link rel=stylesheet href=app.css&amp;gt; (shortened) (also see screenshots of HTML).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has anyone experienced this before? Why would this be happening? We're fairly certain this actually did work a couple of months back because when we built this site we obviously tested it plenty, including the manually triggered 404-pages, and this bug never came up in testing.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 11:43:27 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1232279#M44710</guid>
      <dc:creator>_al</dc:creator>
      <dc:date>2025-12-09T11:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1232295#M44711</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&lt;/SPAN&gt;, I hope that you are well!&lt;BR /&gt;&lt;BR /&gt;Thanks for reaching out to the HubSpot Community!&lt;BR /&gt;&lt;BR /&gt;I'd like to share these resources that might help you:&lt;BR /&gt;&lt;BR /&gt;- &lt;A href="https://developers.hubspot.com/docs/cms/reference/hubl/functions#require-css" target="_blank"&gt;Require_CSS&lt;/A&gt;&lt;BR /&gt;- &lt;A href="https://developers.hubspot.com/docs/cms/start-building/building-blocks/templates/overview#error-pages" target="_blank"&gt;Error pages&lt;/A&gt;&lt;BR /&gt;- &lt;A href="https://developers.hubspot.com/docs/cms/start-building/introduction/developer-environment/website-settings#system-pages-tab" target="_blank"&gt;System Pages Tab&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Now, let's put you in touch with our Top Experts: Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9259"&gt;@Mike_Eastwood&lt;/a&gt;&lt;/SPAN&gt;, &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt; and &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/1007207"&gt;@Christensen&lt;/a&gt;&lt;/SPAN&gt; do you have have any insights to share with &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&lt;/SPAN&gt;, please?&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks so much and have a lovely day!&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 12:32:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1232295#M44711</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2025-12-09T12:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1233213#M44731</link>
      <description>&lt;P&gt;Thanks for your reply, but those links won't help at all which should be obvious if you read the question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's hoping someone with inner knowledge of HS CMS will reply. set_response_code() isn't even a documented function so I don't really expect to get a real answer to this.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Dec 2025 00:35:55 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1233213#M44731</guid>
      <dc:creator>_al</dc:creator>
      <dc:date>2025-12-12T00:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1233376#M44736</link>
      <description>&lt;P&gt;Hi &lt;SPAN class="mention" data-mention="@_al"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;and thanks for sharing these additional details.&lt;BR /&gt;&lt;BR /&gt;When using require_css(get_asset_url('../../dist/app.css')), the CSS is added to {{ standard_header_includes }} in the &amp;lt;head&amp;gt;.&lt;BR /&gt;&lt;BR /&gt;When set_response_code(404) triggers the 404 template to render instead of the original template, it seems the CSS requirements from the original template may not be carrying over.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Here are some workarounds you might want to try:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- CSS loaded via require_css() is rendered within {{ standard_header_includes }} in the &amp;lt;head&amp;gt;. When a 404 template is triggered, it may be rendering a different template context that doesn't include the CSS requirements from the original template.&lt;BR /&gt;&lt;BR /&gt;- Ensure your 404 template has its own require_css() call for the stylesheet, rather than relying on inheritance from a base template.&lt;BR /&gt;&lt;BR /&gt;Let's invite some of our Top Experts to this discussion: Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/996002"&gt;@d-lupo&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/537570"&gt;@RubenBurdin&lt;/a&gt;&amp;nbsp;and &lt;SPAN class="mention" data-mention="@sylvain_tirreau"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/601366"&gt;@sylvain_tirreau&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;do you have other suggestions to help &lt;SPAN class="mention" data-mention="@_al"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&lt;/SPAN&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Thanks so much and have a wonderful weekend!&lt;BR /&gt;Bérangère&lt;BR /&gt;&lt;BR /&gt;&lt;I&gt;This post was created with the assistance of AI tools.&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Dec 2025 12:10:12 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1233376#M44736</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2025-12-12T12:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1233400#M44738</link>
      <description>&lt;P&gt;Thanks. Just to clarify, it's only when we manually trigger a 404 using set_response_code() that this happens. Our 404-template is being rendered, but the CSS is missing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When a regular 404 page shows up the very same template is rendered, but the CSS is NOT missing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regular 404:&amp;nbsp;&lt;A href="https://gronflagg.se/this-is-a-404" target="_blank" rel="noopener"&gt;https://gronflagg.se/this-is-a-404&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Manually triggered 404:&amp;nbsp;&lt;A href="https://gronflagg.se/resa/134811631852" target="_blank" rel="noopener"&gt;https://gronflagg.se/resa/134811631852&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you look at the Network tab in devtools you'll see it loads the exact same things except for 4 files; the CSS (template_app.min.css) and the three font files that the CSS references.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Our JS-file, included using&amp;nbsp;{{ require_js(get_asset_url('../../dist/app.js')) }} is loaded in both cases however.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Dec 2025 13:59:13 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1233400#M44738</guid>
      <dc:creator>_al</dc:creator>
      <dc:date>2025-12-12T13:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1233992#M44750</link>
      <description>&lt;P data-start="315" data-end="435"&gt;Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&amp;nbsp;, yeah that’s a maddening one, especially since “real” 404s and “forced” 404s look like they should be identical.&amp;nbsp;&lt;/P&gt;
&lt;P data-start="437" data-end="1037"&gt;What’s happening under the hood is usually about when HubSpot collects required assets. require_css() doesn’t print a &amp;lt;link&amp;gt; immediately. It registers the dependency so HubSpot can later inject it into {{ standard_header_includes }} in the final &amp;lt;head&amp;gt; render.&lt;/P&gt;
&lt;P data-start="437" data-end="1037"&gt;HubSpot’s docs explicitly say the link tag is added inside standard_header_includes. (&lt;A class="" href="https://developers.hubspot.com/docs/cms/reference/modules/files" target="_blank" rel="noopener" data-start="796" data-end="859"&gt;https://developers.hubspot.com/docs/cms/reference/modules/files) And standard_header_includes is&amp;nbsp;the mechanism that outputs “any attached stylesheets” plus other head bits. (&lt;/A&gt;&lt;A class="" href="https://developers.hubspot.com/docs/cms/reference/hubl/variables" target="_blank" rel="noopener" data-start="972" data-end="1036"&gt;https://developers.hubspot.com/docs/cms/reference/hubl/variables)&lt;/A&gt;&lt;/P&gt;
&lt;P data-start="437" data-end="1037"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With set_response_code(404), you’re in undocumented territory, and the most common failure mode is: the 404 swap happens after the dependency collection phase for the original request, so the “required CSS” registry is effectively reset or never re-applied to the system 404 render context.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That would also explain why your JS still shows up if it’s being required in a different phase or location.&lt;/P&gt;
&lt;P&gt;One quick thing to sanity-check: is your set_response_code(404) called before anything outputs the &amp;lt;head&amp;gt; / before {{ standard_header_includes }} runs? If it’s not right at the top, try moving it as early as possible. If that still doesn’t fix it, the most reliable workaround is to ensure the 404 system template itself requires the theme CSS (and ideally via an absolute get_asset_url('/...') path, not ../../), so the CSS requirement is registered in the actual template HubSpot ends up rendering. Hope this helps.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Dec 2025 15:22:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1233992#M44750</guid>
      <dc:creator>RubenBurdin</dc:creator>
      <dc:date>2025-12-15T15:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1235287#M44784</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;When a 404 is triggered manually using&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{{ set_response_code(404) }}&lt;/LI-CODE&gt;
&lt;P&gt;, HubSpot may switch to the system 404 layout, which can skip any&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;require_css&lt;/LI-CODE&gt;
&lt;P&gt;calls from the original template. Adding the stylesheet directly in the 404 template or in a global include that the 404 template also uses ensures the CSS loads consistently.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this will help you out. Please mark it as &lt;/SPAN&gt;&lt;STRONG&gt;Solution Accepted and upvote&lt;/STRONG&gt;&lt;SPAN&gt; to help another Community member.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 08:22:13 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1235287#M44784</guid>
      <dc:creator>GRajput</dc:creator>
      <dc:date>2025-12-18T08:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1235536#M44793</link>
      <description>&lt;P&gt;Thanks for this. Makes sense. What's confusing is that it did work previously (a few months back).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess I'll try require_css() again in the 404-template and hope that won't make it include the CSS twice for regular 404s (where the CSS is already included).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The set_response_code() call is made on the module level, so well nested inside the base-template, the template that extends base and then a module that's inside that template.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I'll keep digging.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 20:15:19 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1235536#M44793</guid>
      <dc:creator>_al</dc:creator>
      <dc:date>2025-12-18T20:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1235537#M44794</link>
      <description>&lt;P&gt;It doesn't switch the template though. It renders the exact same template, only the CSS is missing for some reason.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 20:17:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1235537#M44794</guid>
      <dc:creator>_al</dc:creator>
      <dc:date>2025-12-18T20:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1236300#M44811</link>
      <description>&lt;P&gt;Hey &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&lt;/SPAN&gt; - thanks so much for these updates!&lt;BR /&gt;&lt;BR /&gt;I'd like to re-tag &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/346639"&gt;@GRajput&lt;/a&gt;&lt;/SPAN&gt; to see if he has any insight given this extended context.&lt;BR /&gt;&lt;BR /&gt;Shane, Senior Community Moderator&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2025 18:04:12 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1236300#M44811</guid>
      <dc:creator>STierney</dc:creator>
      <dc:date>2025-12-22T18:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1260887#M45243</link>
      <description>&lt;P&gt;require_css() in the 404-template file didn't change anything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What's even more annoying is that templates that include set_response_code(404) can no longer even be used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have a few of them (templates that have a condition where a 404 may be triggered), and when the editor tries to save their website/landing pages using those templates HS just throws an error now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This worked fine a few months ago.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Getting pretty tired of the HubSpot CMS developer experience...&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 21:43:32 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1260887#M45243</guid>
      <dc:creator>_al</dc:creator>
      <dc:date>2026-03-20T21:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using set_response_code(404) removes CSS / stylesheet</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1260895#M45244</link>
      <description>&lt;P&gt;Hey &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/81188"&gt;@_al&lt;/a&gt;&lt;/SPAN&gt;,&lt;BR /&gt;&lt;BR /&gt;Thanks for following up here!&lt;BR /&gt;&lt;BR /&gt;I'd like to re-tag &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/537570"&gt;@RubenBurdin&lt;/a&gt;&lt;/SPAN&gt; to see what else he may suggest here!&lt;BR /&gt;&lt;BR /&gt;Shane, Senior Community Moderator&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 23:24:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Using-set-response-code-404-removes-CSS-stylesheet/m-p/1260895#M45244</guid>
      <dc:creator>STierney</dc:creator>
      <dc:date>2026-03-20T23:24:58Z</dc:date>
    </item>
  </channel>
</rss>

