1 comment (1 comment)0 reactions (0 reactions)0 assignees (0 assignees)HTML741 stars (741 stars)667 forks (667 forks)batch import
help wanted
Description
How can I make the CSS load async on this theme? I've tried a lot of methods but none of them works.
Contributor guide
- Tech stack
- htmlcss
- Domain
- frontendperformance
- Issue type
- feature
- DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
- 3
- Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
- 1-3 hours
- Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
- stale
- ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
- unclear
- Prerequisites
- knowledge of Jekyllunderstanding of CSS loadingHTML
- Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
- 30
- Research direction
- The user wants to load CSS asynchronously for performance. Investigate the Jekyll layout files, particularly layouts/default.html or includes/head.html, where CSS is included via Liquid tags. Consider implementing techniques like <link rel="preload" as="style" ...> or using the media attribute trick. Look at how the current CSS is loaded and propose a non blocking method. Check if there are any existing pull requests or discussions about this.