Ever Since I update my SSL certificate, my site will not open properly unless I do not "not secure" the connection. If secured, the page looses all formatting. I believe my SSL is not properly setup. Is this true? Please help!
Ever Since I update my SSL certificate, my site will not open properly unless I do not "not secure" the connection. If secured, the page looses all formatting. I believe my SSL is not properly setup. Is this true? Please help!
You could also add some rules to your .htaccess file to rewrite all http:// URLs to https://
This article from CSS Tricks explains what else you can do to move a WordPress site completely to https://
Many of the files you are including on your page are being called using http rather than https. It is likely that this is causing your problem.
If you want to test this before changing all your code, try copying the source code from your home page into a blank HTML file that you create in your root folder (e.g. test.html). Next, go through the HTML code for test.php and change every reference to http:// to https:// and save.
Load the file using https in your browser.
https://www.golocalexpert/test.php
If this is the problem, then this page should load properly. Now all you have to do is change your website code to render the page this way.
http
instead ofhttps
– czerspalace Commented Feb 9, 2016 at 18:50@import
and can't be seen in the HTML source. – BillK Commented Feb 9, 2016 at 23:11