Resources
Divi Call to Action Module – align buttons
Go to the CTA module Advanced Settings Go to Custom CSS Promo Button Add this code: position: absolute; bottom: 0; left: 0; right: 0; margin: auto; Add this to the hover tab as well to avoid having the button jump up when...
Bulleted Lists Spacing
/* Bulleted list spacing */ li { line-height: 1.7; padding: 5px; } or /* Bulleted list spacing */ .entry-content ol, .entry-content ul { padding: 30px 0px 30px 50px; list-style-position: outside; } .entry-content ol li, .entry-content ul li { margin-bottom: 10px;...
Buttons for Blog Module
Add to css in child theme, and adjust colors accordingly: /* Read more blog button */ .more-link { background-color: #1f568e; display: inline-block !important; color: #fff; padding: 5px 15px; margin-top: 15px; text-transform: uppercase; } .more-link:hover {...
Remove Titles on Images on Hover
Add this script to Theme Options > Integrations section > Head section <script> jQuery(document).ready(function($) { $('img[title]').each(function() { $(this).removeAttr('title'); }); }); </script>
How to move a domain from one Namecheap account to another
You can move a domain to another Namecheap account using the Change Ownership option. Once the domain is completely moved to another account, the new domain holder becomes responsible for all the domain payments. Considered these before a domain push to another...
Save Money in the Long Run with a Customized e-Commerce Website
In today's world, it's no secret that having an online presence is essential for any business. With the rise of e-Commerce, having a functional and user-friendly website is more important than ever. When it comes to building an e-Commerce website, there are two...
Web Maintenance Explained
I cannot begin to tell you how many people believe that once their website is done they are "all set". Many think they don't have to do anything more to it once it is out there live. While that may seem true in that moment, there is still much that needs to happen and...
Adding Custom Shortcodes to WordPress
Discover the transformative power of custom shortcodes in WordPress with this insightful guide from CharlesWorks. Learn how to effortlessly add a custom shortcode that generates a line feed, enhancing the readability and presentation of your WordPress content. This article breaks down the process step-by-step, from writing the function to implementing it in your child theme’s functions.php file, ensuring even beginners can follow along. Whether you’re looking to tidy up statistics outputs or simply want to customize your site’s functionality, this resource is invaluable. Dive into the world of WordPress customization and unlock new possibilities for your website.
Adding Akismet comment spam protection
Akismet provides a convenient and free way to protect your personal or non-profit WordPress site or blog from spam. Many times we'd like to allow comments to be left on our WordPress site. The hassle with this can be the tremendous amounts of spam that come through...
PHP notifications in the WordPress dashboard
Every piece of popular software gets updated over time. PHP is no different. PHP 7.4 is the latest version of PHP 7 at the time of this writing. It was originally rolled out November 28, 2019 and will receive security support until November 28, 2022. It also appears...