I need to add this:
<script>
jQuery(window).load(function() {
jQuery('.janrainContent').css('border','0px');jQuery('.janrainContent').css('width','252px');jQuery('#janrainAuthReturnExperience').css('width','252px');
});
</script>
Right before the closing tag of the WordPress login page’s </body>
tag.
How do you do it?
Would I use a combination of login_enqueue_scripts
and wp_enqueue_scripts
and set $in_footer
to true? I’m not entirely sure how I would do that either…
This is what ended up working for me:
Put your script into a .js file and then: