Hi @verbalcentaur41,
I could notice a 500 error in the browser console for the following URL:
/uploads/forminator/413_218e302/css/style-413.css
Could you please add the following code as a mu-plugins:
<?php
add_filter( 'forminator_upload_root_htaccess_rules', 'wpmudev_remove_htaccess_rules', 10, 1 );
function wpmudev_remove_htaccess_rules( $rules ) {
if ( ! empty( $rules ) ) {
$rules = str_replace('Options -ExecCGI', '', $rules);
}
return $rules;
}
And then access your site via FTP (or cPanel “File Manager” or similar tool) and go to /wp-content/uploads/forminator folder to check whether there is any such line present inside the .htaccess file or not:
Options -ExecCGI
If yes, please remove the above line from the code and then check whether the issue with style occurs again.
Please do make sure to clear the cache once the changes are applied.
Please check this link on how to implement the above code as a mu-plugins:
https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins
Please do let us know how that goes.
Kind Regards,
Nithin