The X-Theme Background is conflicting with something I am trying to do. I am not sure what element/style I am looking for. I’ll copy the info from their FAQ page for more info.
It is a common issue that the theme is configured in a way that it either covers or overrides the background ads or prevents them from being clicked. In all cases, you or your theme developer should still be able to see that the body element has a background-image style attribute.
You or your theme developer can either find the element in the theme and adjust it so that it doesn’t cover the background anymore, or you can move the background to another element using the code below in the functions.php file of your theme.
add_filter( 'advanced-ads-pro-background-selector', 'my_custom_background_selector' );
function my_custom_background_selector(){
return '.main-container';