Make divs equal height
Add this code to make divs equal height <script> var maxHeight = 0; jQuery( document ).ready(function() { jQuery(".equalize").each(function(){ if (jQuery(this).height() > maxHeight) { maxHeight = jQuery(this).height(); } }); jQuery(".equalize").height(maxHeight);...
Divi Image Sizes
A good handy guide for Divi image sizes. Full Width Edge To Edge: 1920x1080 1 column: 1080 x 608 3/4 column: 795 x 447 2/3 column: 700 x 394 1/2 column: 510 x 287 1/3 column: 320 x 181 1/4 column: 225 x 128 height should follow 16:9 if possible
Add This to .htaccess to speed things up
Enable Gzip and browser caching code. Add to the bottom of the .htaccess # LBROWSERCSTART Browser Caching <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/gif "access 1 year" ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access...
All The Divi Plugins!
This place has assembled a lot of the Divi plugins in one place. Sweet! http://www.divithemeexamples.com/divi-theme-plugins/
Divi: Sub-Menu resize
Tired of hunting this down E-V-E-R-Y time I need it. 🙂 /*Sub menu adjustments */ #top-menu li ul { width: 280px; } #top-menu li li a { width: 250px; font-size: 105%; }
Divi Custom Blurbs
This coolness: http://divisoup.com/custom-blurb-module/ + This tweak to the CSS /*---------- [Custom Blurb Module] ----------*/ .OurWorkmanship img { border: 5px solid #FA1010; border-radius: 50%; margin-top: -170px; } .OurProducts img { border: 5px solid #FA1010;...
Getting Divi, WooCommrece and Products Per Page Plugin to play nice
Whew, that's a long title! So I'm branching out into using the Divi theme a bit more. It's an OK theme, I probably haven't explored all of it's customizations enough, but it's no Avada. 🙂 It's nice though. If you are using The Divi Theme from Elegant Themes...
Google Search Console Microdata
When running a site through Search Console, Google started crying and complaining that I didn't have author or date micro data. Boo frickin' hoo! 😉 Anywho I search for a while, tried a few things and found this code that fixes it: Add this to your functions.php in...
WP + Contact Form 7 + Godaddy = Potential Headache
I've had a couple of sites that had problems getting emails from a CF7 form when sent to godaddy. What has worked for me is this page, very last entry: https://wordpress.org/support/topic/contact-form-7-wp-mail-smtp-godaddy-e-mail-not-working-1
Cherry Framework Move Error Solved!
I had a WordPress site on the Cherry Framework and moved it and suddenly was getting errors and couldn't get into the admin. Found this solution that fixes it perfectly so I thought I'd share (hint...kill those cache files!)...