CMS Development

ashu125
Participante

How to defer linked CSS

resolver

Hi there, can someone please tell me how to defer a CSS file that's linked to a Template.

0 Me gusta
2 Soluciones aceptadas
ashu125
Solución
Participante

How to defer linked CSS

resolver

But the problem is that I am not requiring the css file, I am injecting the css to a template

 

img_20220710_456897.png 

 

Ver la solución en mensaje original publicado

0 Me gusta
KSchuller
Solución
Participante | Partner nivel Elite
Participante | Partner nivel Elite

How to defer linked CSS

resolver

@ashu125 you can simply unlink the css file there and then include it in the markup.

 

If you want more control over linked files you will need to HubSpot CLI and edit the module's meta.json file and use css_render_options -- you can find more details here https://developers.hubspot.com/docs/cms/building-blocks/modules/files

Ver la solución en mensaje original publicado

4 Respuestas 4
KSchuller
Participante | Partner nivel Elite
Participante | Partner nivel Elite

How to defer linked CSS

resolver

Refer to this https://developers.hubspot.com/docs/cms/hubl/functions#require-css you will see there you can async a CSS file in the following way:

{{ require_css(get_asset_url("./style.css"), { async: true }) }}
0 Me gusta
ashu125
Solución
Participante

How to defer linked CSS

resolver

But the problem is that I am not requiring the css file, I am injecting the css to a template

 

img_20220710_456897.png 

 

0 Me gusta
KSchuller
Solución
Participante | Partner nivel Elite
Participante | Partner nivel Elite

How to defer linked CSS

resolver

@ashu125 you can simply unlink the css file there and then include it in the markup.

 

If you want more control over linked files you will need to HubSpot CLI and edit the module's meta.json file and use css_render_options -- you can find more details here https://developers.hubspot.com/docs/cms/building-blocks/modules/files

ashu125
Participante

How to defer linked CSS

resolver

Yeah, I can do that. Thanks a lot

 

0 Me gusta