Resources
Editing Text Modules in Divi
WordPress Edits Log into your WordPress Dashboard: In a browser, enter https://yourdomainname/wp-admin (if this does not work and you are a CharlesWorks web client, please give us a call or email us and we’ll help). Login with your administrative credentials (you...
WordPress Edits
Log into your WordPress Dashboard: In a browser, enter https://yourdomainname/wp-admin (if this does not work and you are a CharlesWorks web client, please give us a call or email us and we'll help). Login with your administrative credentials (you should have been...
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; }
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>
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
I wanted to create a custom HTML code function, so made one that will generate a line feed. I tested it to neaten up the output from my favorite WordPress statistics plugin: WP-Statistics by Verona Labs. This shortcode gives the ability to add line feeds to WordPress...
Adding Akismet comment spam protection
Akismet provides a convenient and free way to protect your personal 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 the forms on...
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...