This is all handled with CSS. In your style.css file found in your theme you’ll want to target the .awesome-weather-wrap element.
For example: .awesome-weather-wrap { width: 250px; height: 100px; }
You can target specfic widgets by using the id property. If you can inspect the source of your page and find the widget you’ll find an idea like id="awesome-weather-soltau-germany"
Then in your CSS you could use:
#awesome-weather-soltau-germany { width: 250px; height: 100px; }
If you know a little CSS you can do a lot more. There are plenty of resources out there for CSS help but I hope this gets you started.
Thread Starter
ghrud
(@ghrud)
Thanks – i was able to change the size, but only on the background – i wish the temperatures had follwed with as well
Is there a URL I can see what’s happening? I could give you some code to clean it up.