CMS Development

ashu125
Participant

How to defer linked CSS

Résolue

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

0 Votes
2 Solutions acceptées
ashu125
Solution
Participant

How to defer linked CSS

Résolue

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

 

img_20220710_456897.png 

 

Voir la solution dans l'envoi d'origine

0 Votes
KSchuller
Solution
Participant | Partenaire solutions Elite
Participant | Partenaire solutions Elite

How to defer linked CSS

Résolue

@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

Voir la solution dans l'envoi d'origine

4 Réponses
KSchuller
Participant | Partenaire solutions Elite
Participant | Partenaire solutions Elite

How to defer linked CSS

Résolue

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 Votes
ashu125
Solution
Participant

How to defer linked CSS

Résolue

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 Votes
KSchuller
Solution
Participant | Partenaire solutions Elite
Participant | Partenaire solutions Elite

How to defer linked CSS

Résolue

@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
Participant

How to defer linked CSS

Résolue

Yeah, I can do that. Thanks a lot

 

0 Votes