So… after a day of screwing around I think I have this “working.” So using (in seasons.css):
#history_widget img {
width: 900px; /* should match the image width in skin.conf */
*AND*
@media (max-width:900px) {
#plot_group { overflow: visible; float: left; }
}
@media (min-width:901px) {
#plot_group { overflow: hidden; float: none; }
Not sure the @media changes were needed, but the values matched so it seemed like a good idea.
Along with this in skin.conf:
[ImageGenerator]
image_width = 900
image_height = 400
and some font enlargements for axis labels, the graphs are much easier to read.
What isn’t resolved is the aggressive Brave browser caching. Using Inspect in the regular and
Incognito mode tabs of the rendered pages showed some unexpected behaviors. I’m looking up
how to make sure a page reload actually reloads everything. It seems like the .css file is rather sticky,
but there are options to avoid that I'll try today. Clearing all cached data to restore everything so
I avoid it when I can.
Chuck, I'm guessing switching image generators wouldn't have solved the problem.
Thx a bunch for the pointers, Chris