Where to put video css?
This project is great, really easy to use and I've got my Youtube video embedded on my Jekyll site. However I can't figure out where to put the css to get the responsive video. I've tried several configurations and none of them work, please can you give me a few tips? Many thanks
You should put the responsive video css into whatever stylesheet you're loading into your html page. So for instance this is one of my pages in the _includes directory:
_includes/head.html
Inside the head.html file, I load in my css stylesheet. The directory will be different for you, just load in the path where your css file is located
<link rel="stylesheet" href="../css/style.css">
Thanks, I’ve got it working for me now.
Jeremy On 22 Oct 2020, 00:00 +0100, Nathan Lam [email protected], wrote:
You should put the responsive video css into whatever stylesheet you're loading into your html page. So for instance this is one of my pages in the _includes directory: _includes/head.html Inside the head.html file, I load in my css stylesheet. The directory will be different for you, just load in the path where your css file is located
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.