You are viewing a single comment's thread from:
RE: STEEM ATLAS : Curation Report : 1 Feb - 7 Feb '25
I really liked the new version of the website, it looks more modern and dynamic. I liked that when zooming in on the map and setting a location the scale does not decrease as it did in the previous version.
Sorry, may I give you some advice?
Add a query string to CSS file links to bypass browser caching, like this: /css/style_file.css?v=12345. On a desktop PC, this is almost irrelevant, but for a mobile browser this small setting is really missing because it keeps the cache for a long time, and nothing changes when refreshing the page. You have to go into the browser settings.
If you are using PHP, this is very easy to apply to all CSS files:
$ver_css = '123';
echo '/css/style_file_1.css?v=' . $ver_css;
echo '/css/style_file_2.css?v=' . $ver_css;
Again sorry for the unsolicited advice.