The company I work for decided that I am now the "website owner", but will not grant access to the FTP files. The index page looks like the theme or CSS is broken. I do have Backup Buddy installed and I am not entirely certain on how to revert back to the previously saved index page, or if restoring that version is everything I need to do (maybe the problem is somewhere else?). I found out there is no error log file. I just installed the Error Log Viewer plugin and am not receiving a log just yet.
The website index page is broken only on the HTTP version:
The HTTPS works fine:
The company I work for decided that I am now the "website owner", but will not grant access to the FTP files. The index page looks like the theme or CSS is broken. I do have Backup Buddy installed and I am not entirely certain on how to revert back to the previously saved index page, or if restoring that version is everything I need to do (maybe the problem is somewhere else?). I found out there is no error log file. I just installed the Error Log Viewer plugin and am not receiving a log just yet.
The website index page is broken only on the HTTP version: http://www.perfect365
The HTTPS works fine: https://www.perfect365
Even though your subsequent comments indicate the problem was fixed, you didn't mention 'how' you fixed the problem.
So I have added this answer for anyone else wandering by this question.
But if the issue is not forcing HTTPS, then this is more properly done with settings in your HTACCESS file (which someone with file access will have to do).
A generic htaccess fix is:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
This will rewrite all requests to HTTPS, no matter what URL is requested. It should be placed at the top of your htaccess file, before the WordPress block.