/* Override des WPBakery Placeholder-Bildes */
div.vc_gitem-zone[style*="vc_gitem_image.png"] {
  background-image: url('/wp-content/uploads/2019/01/ico.png') !important;
  background-size: cover !important;
  background-position: center !important;
}

/* IMG-Tag im Container ausblenden */
div.vc_gitem-zone[style*="vc_gitem_image.png"] img.vc_gitem-zone-img {
  display: none !important;
}

/* 1. Target the DIV and override the inline !important background */
div.vc_gitem-zone[style*="vc_gitem-image.png"] { 
    background-image: url(‘/wp-content/uploads/2019/01/ico.png’) !important; 
    background-size: cover !important; 
    background-position: center !important;
}
/* 2. Hide the actual  tag sitting inside that same div */
div.vc_gitem-zone[style*="vc_gitem-image.png"] img.vc_gitem-zone-img { 
    display: none !important;
}