Elementor Contact Form Submit button has empty class

You can add below code in your JS file and replace the class demo with class name you want to add. I have made this code as per the structure in the URL you have shared above. jQuery(“#content-form-b1e59dc”).find(“button”).addClass(“demo”);

Main Menu Hover is Always White

Looks like Elementor is setting the hover color for all links on the page to #5E6462, which is hard to read against the background color of the nav menu. Somewhere within Elementor the color is being set; that will need to be changed.

posts blocks don’t show up correctly

On the broken page, your per-item div looks like <div itemscope=”” itemtype=”http://schema.org/Product” class=”edd_download” id=”edd_download_28068″ style=”width: 33.3%; float: left;”> That width: 33.3% is wrong: the containing <div class=”edd_downloads_list edd_download_columns_3″> already does the three column layout, so this extra width style means each item should only use a third of the width of the column. You need … Read more

Busting Browser Cache when updating stylesheet of WordPress website

If you are editing the child theme CSS then this line has nothing to do with that: wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’, [], THEME_VERSION, ‘all’); get_template_directory_uri always refers to the parent theme, get_stylesheet_directory_uri always refers to the active theme, in this case the child theme. Likewise these lines refer to the currently active theme, aka … Read more

How to remove automatically added custom style tag?

In my case the style tag was added by the flying font plugin. I have modified the file ‘wp-content/plugins/flying-fonts/flying-fonts.php’ ……………. $style = “<style>body{font-family:-apple-system,system-ui,BlinkMacSystemFont,’Segoe UI’,Roboto,Oxygen,Ubuntu,Cantarell,’Fira Sans’,’Droid Sans’,’Helvetica Neue’,sans-serif !important}code{font-family:Menlo,Consolas,Monaco,Liberation Mono,Lucida Console,monospace !important}</style>”; $style=””; // set the style as ” $html = str_replace(‘</head>’, $style . ‘</head>’, $html); ……… And i have added the style manually in non … Read more