• As the title says, the homepage breaks when it is loaded with https (no problem with http). [see picture]

    The strange thing is that it’s the only page that breaks, all the other ones do not suffer from this problem.

    I fear that the reason for this is the slider.

    Do you know how to fix this?

Viewing 1 replies (of 1 total)
  • I had the same problem few days when i decided to move my Vantage based site on HTTPS.

    Basically it is no loading the CSS in your case just as happened on me. In my case it does also on Laptop version on my Mac Retina 13″. But, it is affecting only the caption images inside the articles, not the headers images.

    Here is the link on my site.

    I’ve managed to solve partially the problem by editing the WP config and htaccess file to load the CSS and SSL functionality.

    SSL code on Config php

    /* SSL ADMIN login */
    define('FORCE_SSL_ADMIN', true);
    $_SERVER['HTTPS'] = 'on';

    .HTACCESS additional code

    RewriteCond %{HTTP:CF-Visitor} '"scheme":"http"'
    RewriteRule ^(.*)$ https://%{SERVER_NAME}/$1 [L]
    
    Note: I'm using WP super Cache and CDN

    About the thumbnails i’m still looking around how to solve this problem.

    Hope it helps

Viewing 1 replies (of 1 total)
  • The topic ‘HTTPS breaks homepage on mobile devices’ is closed to new replies.