user1532994
user1532994

Reputation: 1

page appears differently without www subdomain in google chrome

I am not sure what it is but page renders very differently without www subdomain i think it has something to do with my hidden div jQuery layout. Any ideas?

works fine in ie / firefox / android webkit browser. Just don't work in Chrome??

try the without www. first then add www. and you'll see (if you do it in reverse it will render correctly just close tab and open new one).

http://josefscountryinn.com/

Thank You!

edit no longer a www issue its how chrome renders the page sometimes it renders correctly if you refresh

heres a screenshot of chrome left firefox right (cant post screenshot cause im new)

http://www.josefscountryinn.com/sc1.jpg

Upvotes: 0

Views: 513

Answers (1)

Lukas
Lukas

Reputation: 1862

Looks the same to me. You can always force it to either have www or not have it. If you want it to force no www then add the following code to .htaccess.

RewriteEngine on
RewriteCond %{http_host} ^www.josefscountryinn.com [nc]
RewriteRule ^(.*)$ http://josefscountryinn.com/$1 [r=301,nc]

Upvotes: 2

Related Questions