By default, Store Locator will display common elements at the top of your map with selections that customers can make for their search. This section includes the option to select the Search Radius, Search Radius Measurement and Filter Tags
The options for can be removed to give a more minimal and personalized look to your Store Locator page.
To hide the search radius and results dropdown menus, please follow the steps below.
Here’s the complete CSS to hide all of the following sections cleanly and seamlessly:
🟣 “Search Radius”
🟣 “Search Radius Measurement”
🟣 “Filter Tags” (the checkboxes list)
✅ Full CSS Snippet
/* ============================= */
/* 1️⃣ Hide "Search Radius" */
/* ============================= */
label[for="scasl-radius-container"],
#scasl-radius-container {
display: none !important;
visibility: hidden !important;
height: 0 !important;
margin: 0 !important;
padding: 0 !important;
line-height: 0 !important;
}
/* ============================= */
/* 2️⃣ Hide "Search Radius Measurement" */
/* ============================= */
label[for="scasl-lengthUnit"],
#scasl-lengthUnit {
display: none !important;
visibility: hidden !important;
height: 0 !important;
margin: 0 !important;
padding: 0 !important;
line-height: 0 !important;
}
/* ============================= */
/* 3️⃣ Hide "Filter Tags" section */
/* ============================= */
label[for="scasl-tag-list-container"],
#scasl-tag-list-container,
.bh-sl-filters-container.scasl-tag {
display: none !important;
visibility: hidden !important;
height: 0 !important;
margin: 0 !important;
padding: 0 !important;
line-height: 0 !important;
}
/* ============================= */
/* 4️⃣ Collapse any empty .form-input containers */
/* ============================= */
.scasl-see-more-content .form-input:empty {
display: none !important;
margin: 0 !important;
padding: 0 !important;
}
💡 Where to Add
You can place this CSS:
At the bottom of your main stylesheet (
theme.css,custom.css, orstorelocator.css),🧭 How to Add This CSS in Shopify
There are two reliable methods depending on how you manage your theme.
🩵 Option 1: Add via Theme Editor (for quick changes)
In your Shopify admin, go to Online Store → Themes.
Next to your live theme, click Customize.
In the left sidebar, open the Theme Settings (gear icon ⚙️).
Scroll down to Custom CSS (if your theme supports it — many do, like Dawn).
Paste the CSS snippet above directly into the Custom CSS box.
Click Save (top right).
Refresh your storefront — the Search Radius, Measurement, and Tags sections should now be hidden.
💚 Option 2: Add via theme files (for permanent or code-level edits)
From your Shopify admin, go to
Online Store → Themes → Actions → Edit Code.In the left sidebar, open:
/assets/theme.css,base.css, orcustom.css— depending on your theme.Scroll to the bottom of the file, then paste the CSS block above.
Click Save.
Visit your storefront and refresh to confirm.
🧩 Tip: If your theme uses a different stylesheet (e.g.
main.cssorstorelocator.css), it’s totally fine — just paste the snippet in that one instead.⚡ Optional: Test & Debug
If you still see the fields, clear your browser cache or use a private/incognito tab.
You can also inspect the page (Right-click → Inspect) to confirm the
scasl-IDs exist — Shopify sometimes caches older versions of embedded apps.
