How to adjust video aspect ratios for different breakpoints

While the video aspect ratio can’t be adjusted directly for different breakpoints, here’s a straightforward workaround: First, select your video element and choose your target breakpoint. Then apply this custom CSS with your preferred aspect ratio: %%SELECTOR%% .ee-video-container { aspect-ratio:16/9; padding-top:unset; }

How to reduce Dual Heading Annotation spacing

The default underline annotation The Dual Heading element’s annotation feature currently has limited positioning controls, particularly for adjusting the space between text and underline. To customize this spacing, you can apply these CSS modifications to your element: Reduce the spacing %%SELECTOR%% .rough-annotation path { transform: translateY(-10px); } Fix the spacing & keep the text in […]

How to add the download attribute to a link or button

The download attribute in HTML is used with anchor (<a>) elements to indicate that the target of the link should be downloaded rather than navigated to. When a user clicks on a link with the download attribute, the browser will download the linked file instead of opening it in the browser window. See how it […]