Title: Responsive problems
Last modified: August 24, 2016

---

# Responsive problems

 *  Resolved [TheLamb](https://wordpress.org/support/users/thelamb/)
 * (@thelamb)
 * [11 years ago](https://wordpress.org/support/topic/responsive-problems-2/)
 * My site is mobile responsive and all the plugins I use work well but for some
   reason the weather widget doesn’t.
 * Should it be responsive or is this something that can be added in the future?
 * [https://wordpress.org/plugins/awesome-weather/](https://wordpress.org/plugins/awesome-weather/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Hal Gatewood](https://wordpress.org/support/users/halgatewood/)
 * (@halgatewood)
 * [11 years ago](https://wordpress.org/support/topic/responsive-problems-2/#post-6130880)
 * The plugin has some basic responsive items (widths are set in percentages) however
   since everything theme has different breakpoints it’s complicated to make it 
   work well all the time and could need some tweaks.
 * The following code takes a 5 day forecast down to a 4 day forecast at 960 pixels:
 *     ```
       @media only screen and (max-width: 960px) {
       	.awesome-weather-forecast .awesome-weather-forecast-day { width: 23%; }
       	.awesome-weather-forecast .awesome-weather-forecast-day:nth-child(5) { display: none; }
       }
       ```
   
 * You could also change text sizes for the whole widget like this:
 *     ```
       @media only screen and (max-width: 960px) {
       	.awesome-weather-wrap { font-size: 0.8em; }
       }
       ```
   
 *  Thread Starter [TheLamb](https://wordpress.org/support/users/thelamb/)
 * (@thelamb)
 * [11 years ago](https://wordpress.org/support/topic/responsive-problems-2/#post-6131019)
 * Thanks Hal, I realized that ages ago I set a static width on the container to
   make sure it filled the page and that was messing up the responsiveness of the
   plugin. It works perfectly without that.
 * Much appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Responsive problems’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/awesome-weather_ad7c7d.svg)
 * [Awesome Weather Widget](https://wordpress.org/plugins/awesome-weather/)
 * [Support Threads](https://wordpress.org/support/plugin/awesome-weather/)
 * [Active Topics](https://wordpress.org/support/plugin/awesome-weather/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/awesome-weather/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/awesome-weather/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [TheLamb](https://wordpress.org/support/users/thelamb/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/responsive-problems-2/#post-6131019)
 * Status: resolved