Hey Andrea,
How are you doing today?
Sure thing ??
In the future I’d like you to open your own thread so we don’t spam the thread opener with our responses, since you already posted here I’ll respond here as well ??
With that being said this will be more complicated then I thought, putting it to the top is definitely possible with only CSS, in order to do what you want we’ll have to include PHP and use one of the filters that is added to the plugin.
Please try adding the following to your theme functions.php (Ideally you’d want this added in your child theme functions.php so you can avoid losing it once your theme gets updated):
add_filter( 'popup-template-position', 'my_custom_popup_position', 10, 3 );
function my_custom_popup_position( $pos, $id, $popup ) {
$pos = array( 'top' => 'auto', 'bottom' => '0', 'right' => '0' );
return $pos;
}
Please note that this filter will only work if we use “Use custom size” option from popup admin, see screenshot https://screencast.com/t/RpKkJKIVM.
Hope this helps and have a great weekend ??
Cheers,
Bojan