Pro Header - WPAdvertising Plugin

Hi there,
this is the continuation of our (mail -) conversation concerning responsive-issues with WPAdvertising Plugin in Pro header.
Thanks

Hi there,

I checked and it’s not just due to transform styling of your banner but with the positioning as well and it’s not working with flex styling. The positioning and sizing are dynamically calculated by your banner’s javascript. So yes, it’s not applicable for the header that uses flex styling since it acts like a table with alignments.

What you could do is add your banner through custom code outside the header. Example, you can add this to your child theme’s functions.php

add_action('x_before_masthead_begin', 'header_banners', -99);

function header_banners () {  ob_start(); ?>

[cs_section parallax="false" separator_top_type="none" separator_top_height="50px" separator_top_angle_point="50" separator_bottom_type="none" separator_bottom_height="50px" separator_bottom_angle_point="50" style="margin: 0px;padding: 0px;"][cs_row inner_container="false" marginless_columns="true" style="margin: 0px auto;padding: 0px;"][cs_column fade="false" fade_animation="in" fade_animation_offset="45px" fade_duration="750" type="1/2" style="padding: 0px;"]

<img src="http://speziellfuerdich.com/wp-content/uploads/2017/03/HeaderSmallLogo.jpg">

[/cs_column][cs_column fade="false" fade_animation="in" fade_animation_offset="45px" fade_duration="750" type="1/2" style="padding: 0px;"]

[wpproads id="1347"]


[/cs_column][/cs_row][/cs_section]

<?php echo do_shortcode( ob_get_clean() );

}

Thanks.