No coding! This is great. Thanks, John - you are a legend. What are some other interactions that I can use chatGPT to make and embed without much dev knowledge?
@Mighty-by-Maestro6 ай бұрын
The sky's the limit!! Tools like ChatGPT keep getting smarter and smarter and there are lots of fun interactions you can make! We are also able to build any custom interactions you may need 🙌
@WILLSMITHONE4 ай бұрын
Hi! I need some assistance with this. I'm unclear why the code step isn't working for me. Can you help?
@Mighty-by-Maestro4 ай бұрын
@@WILLSMITHONE Of course! Reach out to us in our Mighty community and we can get you up and running!
@WILLSMITHONE4 ай бұрын
@@Mighty-by-Maestro AWESOME!!!!! 😄
@Mighty-by-Maestro7 ай бұрын
Here is the HTML code snippet that ChatGPT generated for us! ---------------------------- Responsive KZbin Videos .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 aspect ratio */ height: 0; overflow: hidden; max-width: 100%; } .video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .videos { display: flex; flex-wrap: wrap; justify-content: space-around; margin: 20px 0; } .video { width: 45%; margin-bottom: 20px; } @media (max-width: 768px) { .video { width: 100%; } } ------------