
6 issues related to why is the Elementor Nav Menu broken
- Combining & Minifying stylesheets and JavaScripts.
- Elementor Beta or Developer Edition plugin
- Elementor Features / Experiments
- Set the CSS Print Method to an external file
- Forgot or misses to Regenerate CSS and Data
- Caching.
Combining & Minifying stylesheets and JavaScripts:
– Plugins support both functionalities-
Many caching & Optimization solutions offer these functionalities and if you enable the features turn it off or exclude the scripts or stylesheets that cause the problems-- WP Rocket: WP Rocket offers minification and Combining JS & CSS files but they also have the option not to combine it if your site uses HTTP/2 protocol. (see the red rectangle border for reference)If you have any issues, you can also refer to WP Rocket’s Doc on how to Exclude External JavaScript from Combining.
- Swift Performance: By default, Swift Performance will merge/combine scripts into a single file which sometimes can cause problems.If you have any issues, you can refer to Swift Performance’s documentation on how to exclude scripts from merging/ combining.
- SG Optimizer (Site Ground Optimizer): SiteGround Optimizers offers a combined JS feature that allows you to combine JS into a single file.
- Autoptimize does offer Aggregate JS files to combine JS but you don’t have to enable it if your site uses HTTP/2 protocol.Just click the “Do not aggregate but defer?” to minify and optimize your JS and add defer attributes to all the JS so it doesn’t cause rendered-blocking.
- If your site uses HTTP/2 protocol, there is no point in combing JavaScripts (JS) and Stylesheets (CSS) into a single file to reduce HTTP requests.
- This old technique is used to improve site performance because HTTP/1.1 doesn’t support multiplexing which means it can’t handle multiple requests at once whereas HTTP/2 can.
- If your site is still using the HTTP/1.1 protocol better change the hosting provider or choose CDN that supports HTTP/2 protocol because you’re missing lots of features.




- Choose better-hosting providers ( Runcloud + Digital Ocean Droplets (Referal link) and combined with CDNs that support HTTP/2 by default like Cloudflare
- if your site uses HTTP 2 protocol, deferring the script tags with the “defer” attributes is the best method not to cause any rendered blocking issues.
// I use the Kinsta tutorials
function defer_parsing_of_js( $url )
{
if ( is_user_logged_in() ) return $url;
//don't break WP Admin
if ( FALSE === strpos( $url, '.js' ) ) return $url;
//Check whether you're loading jquery.js or jquery.min.js in Browser's Network panel or source code
if ( strpos( $url, 'jquery.min.js' ) ) return $url;
return str_replace( ' src', ' defer src', $url );
}
add_filter( 'script_loader_tag', 'defer_parsing_of_js', 10 );
Elementor Beta (developer edition)

Elementor Features
Elementor’s Features are a great edition from Elementor to improve site functionalities, and performance. But most of Elementor’s experiments are currently in the beta stages which means they will most likely it will break your site functionalities and overall design.
The good news is that 2 of the features are already stable
Three features that cause problems
– Improved Asset Loading (stable):
Please Note! The “Improved Asset Loading” mode reduces the amount of code that is loaded on the page by default. When activated, parts of the infrastructure code will be loaded dynamically, only when needed. Keep in mind that activating this experiment may cause conflicts with incompatible plugins. Learn More about Optimized Assets Loading
– Improved CSS Loading (stable):
Please Note! The “Improved CSS Loading” mode reduces the amount of CSS code that is loaded on the page by default. When activated, the CSS code will be loaded, rather inline or in a dedicated file, only when needed. Activating this experiment may cause conflicts with incompatible plugins. Learn More about conditional & inline CSS load experiment.
– Inline Font Icons (Beta)
The “Inline Font Icons” will render the icons as inline SVG without loading the Font-Awesome and the eicons libraries and its related CSS files and fonts. Learn More about the inline font icons experiments.
– Solution:
- If your scripts are not loading properly, Deactivate the Improved Asset Loading to stop serving JavaScripts dynamically.
- If any dynamic CSS added by pop-up is missing, deactivate improved CSS Loading, this will stop removing unused CSS from the frontend stylesheets, and
- If any of the icons are missing and not rendering properly like on the pop-up, close or open icons just deactivate the Inline Font Icons, this will serve icon instead of inline SVG.
Set the CSS Print Method to an external file
The internal Embedding method can cause unexpected layout issues because the up-to-date CSS was not able to replace old CSS with your caching plugins.
What it does is, it will unnecessarily inline your frontend CSS which can increase your document size (HTML) and it can impact your First Contentful Paint (FCP) performance.
You can see how much CSS is added to the page from my foxscribbler’s case study.
Regenerate CSS & Data
This is one of the most common issues I saw on Facebook and Reddit and sometimes even I forgot to click the Regenerate CSS & Data data.
When Elementor released new updates, it updates automatically but sometimes it doesn’t and require us to manually interact with the button.
When it doesn’t we forget to update and because of this it ruins the navigation menu.
Solution
Whenever Elementor update, just don’t forget to click the regenerate CSS and Data button and clear the cache.
Styles set in Elementor are saved in CSS files in the uploads folder and the site’s database.
Recreate those files and settings, according to the most recent settings. When you click the button, it replaces the old one with the newer style
Caching
Caching can improve your site performance by downloading the assets to the user’s computer and store there for a certain period but if you cache your HTML it can cause more problems than good.
To solve this issue, you have to force refresh your browser cache by Ctrl + F5 on Windows and ⌘ Cmd +⇧ Shift + R on Mac
– Solution:
- If you update Elementor or Elementor Pro plugin, just make sure you clear all the cache.
- If you’re in staging environments, disable caching or any performance plugin because your visitors wouldn’t be seeing your website.
- If you’re using Cloudflare (CF), or any CDN make sure you integrate with the performance plugin this way when you clear the cache, it will also clear the CDN cache.
If you have other ways to debug the issue, don’t forget to add your comments.