Page 1 of 1
Website not displaying properly
Posted: Wed Mar 19, 2025 6:14 pm
by Clochette
Hello!
I created a small website with the theme Massively. It used to look fine but now it's looking all broken, as if the css didn't exist
https://www.chez-germaine.com/
I am not sure what to do to fix it. Please help! Thank you

Re: Website not displaying properly
Posted: Wed Mar 26, 2025 9:41 pm
by Edi
Sorry for the late answer!
Bludit is installed at
http://www.chez-germaine.com.
To use
https://www.chez-germaine.com please go to
Settings > General > Site URL and change in the field URL from http:// to https://.
Re: Website not displaying properly
Posted: Sun Apr 13, 2025 5:47 pm
by doobs
Ha!
Had just come here with the same issue.
Brilliant
Re: Website not displaying properly
Posted: Fri May 09, 2025 10:12 pm
by Clochette
Edi, thank you so so much for your help. It's now all fixed thanks to you!
Re: Website not displaying properly
Posted: Sat May 10, 2025 8:51 am
by zacharielle
Hi,
I used Massively theme for a project and I noticed that it was impossible to zoom on mobile devices. I found this was because of "user-scalable=no" in the viewport meta name. For better accessibility, I would recommend deleting it from your theme (index.php):
Code: Select all
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
should become
Code: Select all
<meta name="viewport" content="width=device-width, initial-scale=1" />
I thought I already did it but apparently not, I've just opened a
PR on GitHub to that end.