Fix the ever shrinking narrow map embed on Trulia.
Fix Trulia Tiny Map by coolguysourcream
Details
Authorcoolguysourcream
LicenseNo License
Categorytrulia.com
Created
Updated
Size268 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This mod makes the map 50% wide. The same width as the list. Ideally the map width would be resizable, but Trulia refuses to fix it and keeps making even smaller, even on an ultrawide monitor.
They seem to only be interested in updating their mobile app.
So here is a fix to make the site tolerable.
Source code
/* ==UserStyle==
@name Fix Trulia TIny Map
@version 20230328.10.52
@namespace ?
==/UserStyle== */
@-moz-document domain("trulia.com") {
#resultsColumn {
width: 50%;
}
section[aria-label*="Interactive Google Map"] {
width: calc(50% - 16px);
}
}