Status
Not open for further replies.

Host DZire

Active Member
Corporate Membership
920
2013
260
3,295
Hello,

Here is http link :- Host DZire - Dedicated servers, Web Hosting, Windows Rdp, Netherlands, Germany, Romania, France & USA

Now check Difference when using

Here is https link :- https://hostdzire.com

Screenshots Below Without https :-

24f4553d02713873fb97a863d2c4e473.png


Screenshots Below With https :-

0e53ef753334526ff6b383be7e0fa024.png




Can any one tell me what is problem ?
 
5 comments
Try this:

Remove the width from the below class.


.container .seven.columns {
width: 360px;
}


And in the below class remove the width as well.


.container .ten.columns {
width: 587px;
}

Although I'm half sleeping and it's snowing outside, I'm 80% sure it will solve your issue.
 
its a simple problem.
You load non-https files.

on your case this one:
Code:
http://fonts.googleapis.com/css?family=Fjalla+One|Archivo+Narrow|Oswald:400,700

and this:
Code:
 script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>

and this:
Code:
http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js

and this:
Code:
<img src="http://cdn.livechatinc.com/startups/livechat-for-startups@2x.png

Moreover:
please use relative paths and dont hardcode your links.
This is bad:
Code:
http:// hostdZire.com

use s.th. like:
Code:
/index.php
Thus it will work with http and https


Mixing https with http-query will be blocked by your browser (since a few releases ago)
but you can mix http with https

so either you change your requests to google to https, or you have to build a script which will change the URL depending on your access-url.
 
Status
Not open for further replies.
Back
Top