Hi ich erzeuge ein PopUp mit folgender Funktion beim Seitenstart.
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=400,height=200,scrollbars=no,left=440,top=412');
return false;
}
Er macht dies auch. Ich möchte nun das erzeugte PopUp mit CSS anpassen. Wie geht das? So dass es eben nicht mehr wie ein standard windows popup aussieht.
Danke für eure Tipps