Meh.

  • 34 Posts
  • 338 Comments
Joined 9 months ago
cake
Cake day: June 7th, 2025

help-circle












  • Thanks for the idea. Tried that, went through all of the related CSS lines. No changes in the display in FF.

    I also tried adding text inside the html elements where I expect to see the data displayed, like this:

    <div class="hourly-forecast">  
                    <div class="hour-column">  
                        <div class="hr-temperature">1</div>  
                        <div class="hr-sun"></div>  
                        <div class="hr-time"></div>  
                    </div>  
                    <div class="hour-column">  
                        <div class="hr-temperature">2</div>  
                        <div class="hr-sun"></div>  
                        <div class="hr-time"></div>  
                    </div>  
                    <div class="hour-column">  
                        <div class="hr-temperature">3</div>  
                        <div class="hr-sun"></div>  
                        <div class="hr-time"></div>  
                    </div>  
    </div>  
    

    That “1” (etc) does display, in a stack, one number below the next. No idea why though still.