Hey folks, nearly finished my skin, but i would like the option for the user to put a transparent white "box" underneath the text of the Chat Window, like coolzee has achieved with
this...
Could anyone tell me how he achieved this, i have asked him but he hasnt answered.
EDIT: Figured it out; For those folks that wish to know in the future, head to the 920 style file and search for.
code:
convhistory[class="DefaultWallpaper"]
{
background:argb(0,0,0,0);
}
convhistory[class="CustomWallpaper"]
{
background:argb(128,255,255,255);
}
convhistory[class="DynamicWallpaper"]
{
background:argb(0,0,0,0);
}
and replace with
code:
convhistory[class="DefaultWallpaper"]
{
background:argb(128,255,255,255);
}
convhistory[class="CustomWallpaper"]
{
background:argb(128,255,255,255);
}
convhistory[class="DynamicWallpaper"]
{
background:argb(128,255,255,255);
}