Untitled Snippet

body { font-family: Arial, sans-serif; text-align: center; margin: 20px; background-color: #f9f9f9; color: #333; } h1 {…

<10

Modern CSS Reset

https://www.joshwcomeau.com/css/custom-css-reset/

Hendrik van den Bor
<10

FlowMattic: Expand Workflow Description Box.

This snippet runs in the WordPress admin area and removes any line-clamping on the “.css-iIDhdyB” element…

<10

Food quiz

Getting Older Quiz 🧠 Healthy Food Quiz for Older Adults Submit Quiz

Display Page/Post ID

This snippet can be used to display Page/Post ID in the Admin Dashboard. Adds option to…

What is Available

document.addEventListener('om.Campaign.load', function(event) { console.log(event.detail); });

om.Rule.init

document.addEventListener('om.Rule.init', function(event) { console.log(event.detail.Rule); // The specific rule object. console.log(event.detail.Rule.rule); console.log(event.detail.Campaign); } );

om.Styles.positionPopup example 1

document.addEventListener('om.Styles.positionPopup', function(event) { const campaign_selector = "#om-" + event.detail.Campaign.id + "-" + event.detail.Campaign.view; $(campaign_selector).dragon(); } );

Slide Reposition Top Right v2

html div#om-{{id}} { top: 0px !important; bottom: unset !important; transition: top 0.3s ease 0s !important; }

form autofocus

document.addEventListener('om.Form.autofocus', function(event) { let omForm = event.detail.Form; omForm.autofocus = false; }

1 97 98 99 100 101 124