23.06.2018, 04:59
(22.06.2018, 18:01)mischa Wrote: Hi,Hi,
I want to open a widget on page load,
found this on the forum $("#widget-1").removeClass("hide");
the widget opens on page load, but is totally out of proportions.
how can i fix this?
Thanks,
Mischa
try this
Code:
$('#widget-1').css({'display':'block', 'opacity': '1', 'transform': 'perspective(800px)', 'top': '200px', 'left': '500px'});
Jean-Marc