Hi, first of all congratulation for this module.
I am a problem with text color.
On another post you suggest to add this line on CSS:
#ty2udate {color:#fff;}
but it not work.
After an ispection with firebug/firefox, i see this:
----------------------------
<span id="ty2udate10022"/>
Venerdi, 30 Ottobre 2009
----------------------------
If Pre-text and Post-text parameters contain "a" and "b"
respectively, the result is:
----------------------------
a
<span id="ty2udate10022"/>
bVenerdi, 30 Ottobre 2009
----------------------------
To resolve, i am modified your code in this manner:
....original
echo $pretext."<span id=\"ty2udate" . $module->id . "\"></span>".$posttext;
....modified
echo $pretext."<span id=\"ty2udate" . $module->id . "\">";
and
....original
if($align != "0"){
echo "</div>";
}
....modified
echo "</span>".$posttext;
if($align != "0"){
echo "</div>";
}
The line on the CSS file is modified
#ty2udate10022 {color:#fff;}
and now the date-time text are of desidered color.
After an ispection with firebug/firefox, now i see this:
----------------------------
<span id="ty2udate10022"Venerdi, 30 Ottobre 2009</span>
----------------------------
If Pre-text and Post-text parameters contain "a" and "b"
respectively, the result is:
----------------------------
a
<span id="ty2udate10022"Venerdi, 30 Ottobre 2009</span>
b
----------------------------
Excuse me for a bad english.
Many tanks for your attention.
Michele