html - www subdomain looks different than main domain on Google Chrome -


i'm working on website looks different when browser pointed root domain , when pointed "www" subdomain. canvas width, font sizes, image sizes vary between root domain , "www" subdomain.

edit 1: happens on google chrome. on firefox, both pages same.

please refer these external links site in google chrome.

  1. without "www" - https://myshaadiwale.com

root myshaadiwale screenshot

  1. with "www" subdomain - https://www.myshaadiwale.com

subdomain myshaadiwale screenshot

even browser console not show amiss. possibly cause difference?

the website based on python flask+apache stack. apache configuration file looks this:

<virtualhost *:443>     servername myshaadiwale.com     serveralias www.myshaadiwale.com     serveradmin webmaster@localhost      sslengine on     sslcertificatefile /root/ssl/myshaadiwale.com.crt     sslcertificatekeyfile /root/ssl/myshaadiwale.com.key     sslcertificatechainfile /root/ssl/intermediate.crt      wsgidaemonprocess msw user=live group=live threads=5 python-path=/home/live/msw/flask/lib/python2.7/site-packages     wsgiscriptalias / /home/live/msw/msw.wsgi      <ifmodule mod_deflate.c>             <ifmodule mod_filter.c>                     # these known safe msie 6                     addoutputfilterbytype deflate text/html text/plain text/xml                      # else may cause problems msie 6                     addoutputfilterbytype deflate text/css                     addoutputfilterbytype deflate application/x-javascript application/javascript application/ecmascript                     addoutputfilterbytype deflate application/rss+xml                     addoutputfilterbytype deflate application/xml             </ifmodule>     </ifmodule>      <directory /home/live/msw>             #header set access-control-allow-origin "*"             wsgiscriptreloading on             wsgiprocessgroup msw             wsgiapplicationgroup %{global}             wsgipassauthorization on             options             allowoverride             require granted     </directory> </virtualhost> <virtualhost *:80>     servername myshaadiwale.com     serveralias www.myshaadiwale.com     redirect permanent / https://www.myshaadiwale.com/ </virtualhost> 

the pages still pixel identical. problem have changed browser zoom level , chrome remembers on per-domain basis. press ctrl 0 reset zoom 100% , pages again identical. pressing ctrl + reproduce problem shown in screenshots.


Comments

Popular posts from this blog

c - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -