Fluid Engine Tablet Spacing Fixer
Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet
Qu'est-ce que Fluid Engine Tablet Spacing Fixer ?
Fluid Engine Tablet Spacing Fixer est une extension Chrome développée par https://schwartz-edmisten.com, et sa fonction principale est "Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fluid Engine Tablet Spacing Fixer
Téléchargez les fichiers d'extension Fluid Engine Tablet Spacing Fixer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
If you are using Squarespace 7.1's new Fluid Engine editor, you might have noticed that your text blocks get TONS of space between them on screen sizes between 600px and 767px (between mobile and tablet) with no way to remove it. This is because of the way Fluid Engine maps blocks to the grid. The remedy is to map blocks to the grid on a screen size of 767px. When mapping them at this width, the spacing issues are resolved. This extension automatically makes your 7.1 site's mobile view 767px wide, so you don't have to resize the window yourself. It also provides a "mobile preview" mode, that shows the original mobile view in additional to the 767px editing view, so you can see what your site looks like across more screen sizes. This will provide a much needed fix until (hopefully) Squarespace gives us an editable tablet view in the future. Then at that time you can uninstall this extension.
Informations de Base sur l'Extension
Nom | Fluid Engine Tablet Spacing Fixer |
ID | gemmfnoajaghnaddkccmekbchdgckdab |
URL Officiel | https://chromewebstore.google.com/detail/fluid-engine-tablet-spaci/gemmfnoajaghnaddkccmekbchdgckdab |
Description | Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet |
Taille du Fichier | 9.33 KB |
Nombre d'Installations | 1,203 |
Version Actuelle | 0.1.5 |
Dernière Mise à Jour | 2023-08-03 |
Date de Publication | 2022-09-22 |
Évaluation | 4.89/5 Total 9 Évaluations |
Développeur | https://schwartz-edmisten.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://schwartz-edmisten.com |
URL de la Page d'Aide | https://schwartz-edmisten.com/fluid-engine-tablet-spacing-support |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fluid Engine Tablet Spacing Fixer", "description": "Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet", "version": "0.1.5", "manifest_version": 3, "permissions": [ "scripting", "activeTab" ], "host_permissions": [ "*:\/\/*.squarespace.com\/config*" ], "content_scripts": [ { "matches": [ "*:\/\/*.squarespace.com\/config*" ], "css": [ "style.css" ], "js": [ "script.js" ] } ], "action": { "default_popup": "popup.html", "default_title": "Fix Fluid Engine Tablet Spacing" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |