Salve,
sono un'utente alle prime armi con i css ho installato in joomla! 2.5 l'estensione G4K Weather ed ho scelto di personalizzare il css per avere il forecast su linee separate. Dopo non poche difficoltà sono riuscito nell'intento. Il problema è che su firefox 13 Opera 12 e "Internet Explorer" funziona mentre su Chromium , e su Safari non funziona. Credo ci sia qualche stile non compatibile qualcuno potrebbe aiutarmi.
Il sito è
http://linux4mylife.altervista.org/joomla25/mentre il css che ho usato è questo
/* Weather GK4 */
.gkwMain { overflow:hidden; }
.gkwCurrent { overflow:hidden; }
.gkwMainLeft { float:left; width:auto; }
.gkwTemp { font-size:18px; font-weight:bold; text-align:center; margin-top:0px; }
.gkwMainRight { float:left; width:auto; margin:0 0 0 16px; }
.gkwMainRight h2 { margin: 4px 0 4px 0; }
.gkwCondition { }
.gkwHumidity { }
.gkwWind { }
ul.gkwNextDays { list-style-type:none; list-style-image:none; margin:0 0 0 0; padding:0 0 0 0; }
ul.gkwNextDays li {background:none!important; padding:0!important; margin:0!important; border:none!important; list-style-type:none!important;}
ul.gkwNextDays li:last-child div.gkwFday{ border-bottom:1px dashed #e0e0e0; }
div.gkwFday { border-top:1px dashed #e0e0e0; margin:0 0 0 0; }
.gkwDay{ height:35px; line-height:35px; display:block; float:left; width:36%; }
ul.gkwNextDay li img { margin-top:15px; clear:both; display:block; }
p.gkwDayTemp{ height:15px; line-height:35px; display:block; float:left; width:50%; }
span.gkwDayDay { padding:2px; font-size:10px; }
span.gkwDayNight {padding:2px; background:#666; color:#fff; font-size:10px; }
invece l'html
<div class="gkwMain" id="weather1">
<div class="gkwCurrent">
<div class="gkwMainLeft">
<img src="http://linux4mylife.altervista.org/joomla25/modules/mod_weather_gk4/icons/64/sunny.png" alt="Sereno" />
<p class="gkwTemp">27°C</p>
</div>
<div class="gkwMainRight">
<div class="gkwCondition">Sereno</div>
<div class="gkwHumidity">Umidità: 65%</div>
<div class="gkwWind">Vento: N a 0 km/h</div>
</div>
</div>
<ul class="gkwNextDays">
<li class="gkwItems4">
<div class="gkwFday">
<span class="gkwDay">sab</span>
<img src="http://linux4mylife.altervista.org/joomla25/modules/mod_weather_gk4/icons/32/sunny.png" title="Per lo più soleggiato" alt="Per lo più soleggiato" />
<p class="gkwDayTemp">
<span class="gkwDayDay">28°C</span>
<span class="gkwDayNight">17°C</span>
</p>
</div>
</li>
<li class="gkwItems4">
<div class="gkwFday">
<span class="gkwDay">dom</span>
<img src="http://linux4mylife.altervista.org/joomla25/modules/mod_weather_gk4/icons/32/chance_of_storm.png" title="Probabili temporali" alt="Probabili temporali" />
<p class="gkwDayTemp">
<span class="gkwDayDay">28°C</span>
<span class="gkwDayNight">15°C</span>
</p>
</div>
</li>
<li class="gkwItems4">
<div class="gkwFday">
<span class="gkwDay">lun</span>
<img src="http://linux4mylife.altervista.org/joomla25/modules/mod_weather_gk4/icons/32/sunny.png" title="Per lo più soleggiato" alt="Per lo più soleggiato" />
<p class="gkwDayTemp">
<span class="gkwDayDay">28°C</span>
<span class="gkwDayNight">14°C</span>
</p>
</div>
</li>
<li class="gkwItems4">
<div class="gkwFday">
<span class="gkwDay">mar</span>
<img src="http://linux4mylife.altervista.org/joomla25/modules/mod_weather_gk4/icons/32/sunny.png" title="Sereno" alt="Sereno" />
<p class="gkwDayTemp">
<span class="gkwDayDay">29°C</span>
<span class="gkwDayNight">19°C</span>
</p>
</div>
</li>
</ul>
</div>
Grazie.