To avoid text wrapping in dropdown menus, try adding this to css: /* Increase width of drop-down menus */ @media screen and (min-width: 981px) { .sub-menu { min-width: 300px; } #top-menu li li a { width: 260px; /* Extra - Reduce padding on list items */ padding: 4px...
WordPress
Remove extra bottom padding and margin on posts
/* Remove extra bottom padding and margin on posts */ .single .et_pb_post { margin-bottom: 0; padding-bottom: 0; } #left-area { padding-bottom: 0 !important; }
Some Helpful Plugins for use with WooCommerce Plugins
There are many plugins out there to enhance Woo-Commerce functionality. Here are some of my favorite helpful plugins for use with WooCommerce. This list may be added to over time: Side Cart WooCommerce https://wordpress.org/plugins/side-cart-woocommerce/ Google...
How To Fix WordPress Mobile Image Alignment & Text Wrap Problems
You need to add the margin snippet every time you align and image to right or left. <img class="alignright size-medium wp-image-2440" style="padding: 20px;" src="https://website.com/wp-content/uploads/2022/08/plank-pest-spiders-problems-223x300.jpg" alt=""...
Remove Default Selected State from WooCommerce Checkout Billing Fields
Please put this code in functions.php file. //default checkout state add_filter( 'default_checkout_billing_state', 'change_default_checkout_state' ); add_filter( 'default_checkout_shipping_state', 'change_default_checkout_state' ); function...
Do it Myself or Hire it Done?
I believe this article applies mostly to people operating a small business. Especially if what you do on the web is primarily a business endeavor for you. This type of question is always one of the many you face regarding completing webwork on your website. There are...
How to Manage Spam Comments in your Website
In doing routine server audits, I often notice that some posts on various websites are getting spammed. This usually means that a control on the post (when it was originally created) has the "Allow Comments" and/or "Allow Pings" left turned on. At that point I check a...
Fixing an ERR_TOO_MANY_REDIRECTS Redirections Error
A usual part of solving issues as they arise in the website development business is searching Google for solutions. Very seldom have I ever been the first or only individual to find a particular problem needing a solution. I don't believe the situation I'll describe...
Using All-in-One WP Migration plugin to back up your website
The All-in-One WP Migration plugin is an excellent plugin for backing up, copying, cloned or migrating your WordPress website. It's become my favorite and we use it here at CharlesWorks extensively. Issues using the All-in-One WP Migration plugin The only time we have...
Fixing a Validation Glitch on the Date Field on a Contact 7 Form
This article would apply to websites containing older code. Generally, the website was built some time back. It may use a theme and contain plugins that are no longer supported (haven't been updated in a while). The site would have had something along the lines of an...