Hi,
The css styling can be found at the bottom of icit-weather-widget.php. To set the forecast to the right, overwrite these styles:
#<?php echo $this->id ?> .weather-wrapper {
position: relative;
margin: 20px 0;
height: 230px;
}
#<?php echo $this->id ?> .weather-wrapper .top {
background: <?php echo $night ? $background_night : $background_day; ?>;
height: 100%;
}
#<?php echo $this->id ?> .weather-forecast li {
background: none;
display: block;
text-align: center;
padding: 5px 10px;
margin-bottom: 20px;
color: <?php echo $night ? $background_night : $background_day; ?>;
width: 100%;
border: none;
}
#<?php echo $this->id ?> .weather-wrapper .weather-forecast {
border: solid 2px;
border-color: <?php echo $night ? $background_night : $background_day; ?>;
margin: 0;
position: absolute;
left: 100%;
top: 0;
height: 100%
}
Then just change the height of .weather-wrapper as themes can mess with the height sometimes. You then may want to change some of the spacing in the current weather. I would also suggest moving the wind and humidity to the bottom left if you are displaying the weather breakdown.
#<?php echo $this->id ?> .weather-wrapper .weather-wind-condition {
color: white;
font-family: Trebuchet MS, Candara, sans-serif;
font-size: 1.1em;
text-align: left;
padding-left: 3%;
padding-top: 5px;
}
#<?php echo $this->id ?> .weather-wrapper .weather-humidity {
color: white;
font-family: Trebuchet MS, Candara, sans-serif;
font-size: 1.1em;
text-align: left;
padding-left: 3%;
padding-top: 5px;
}