Insert lightbox popup .css and .js into the page code

Q: Could you please provide info how to insert .css and .js into the page manually, I can't upload them on my server. Thanks.

A: Please, open generated .css file in any text editor (for example, NotePad) and copy the code.

Insert .css code into tags into your page:

<style type="text/css">
...
</style>



And .js code this way:

<script type="text/javascript">
...
</script>

Related