Combine Dashboard – Copy

/** * WordPress Dashboard Widget Framework Styles */ :root { –transition-speed: 0.3s; –border-radius: 8px; –primary-color: #4a6cf7; –primary-hover: #3a5ce5; –secondary-color: #6c757d; –success-color: #28a745; –danger-color: #dc3545; –warning-color: #ffc107; –info-color: #17a2b8; –light-color: #f8f9fa; –dark-color: #343a40; –background-color: #f8f9fa; –card-background: #ffffff; –text-color: #212529; –border-color: #dee2e6;…Continue reading

Pricing Page Customization – CSS

/* Author: Sumaiya , Click up Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-24435 */ /* Des: This CSS is added to optmize the feature list “x” icon */ .eb-feature-list-item[data-icon=”fas fa-xmark”] .eb-feature-list-icon-inner { border: 2px solid #f40009!important; /* Add a red border */ } /* Completed…Continue reading

Tooltip Enhancement for Affiliate Text In Feature Single Page

// Author: Sumaiya, Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-24455 // Wait for the DOM to fully load before executing the script document.addEventListener(‘DOMContentLoaded’, function() { // Select the tooltip container element const tooltipContainer = document.querySelector(‘.tooltip-container’); // Select the tooltip text element within the tooltip…Continue reading

Feature Page Customization – CSS

/* Author:Sumaiya , Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-25095 */ /* Des: This CSS is added to make this class “feature-sticky-section” sticky */ .feature-sticky-section { position: -webkit-sticky; /* For Safari */ position: sticky; top: 57px; /* Adjust the top offset as needed */…Continue reading

EvocaLux Search Styles

/* === EvocaLux Search Styling === */ /* Ensure header links and lock are clickable again */ .site-header { z-index: 1001 !important; position: relative; } /* Unified interactivity + layering for clickable icons */ .site-header nav a, .login-icon, .sparkle-lock, .cart-icon…Continue reading

Blog Archive Page Customization – CSS

/* Author: Sumaiya, Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-11315 */ /* Des: This CSS is added to optmiize the Active category filter items */ .eb-post-grid-wrapper.eb-post-grid-pf3xz .ebpg-category-filter-list-item.active { background-color: var(–ikb-blue)!important; color:#ffffff!important; } /* Completed */ /* Des: This CSS is added to optmiize the…Continue reading

Automatic HLE Table Handler

window.addEventListener(‘DOMContentLoaded’, () => { document.querySelectorAll(‘.hle’).forEach((table, index) => { // Check if the table needs expansion if (table.scrollHeight { table.classList.toggle(‘expanded’); btn.textContent = table.classList.contains(‘expanded’) ? ‘Show Less’ : ‘Show More’; }); // Insert the button after the current table table.insertAdjacentElement(‘afterend’, btn); });…Continue reading