There is a code that is located in the body:
<script type="text/javascript"> jQuery(document).ready(function() { //Выравниваем текст с изображением на главной странице jQuery(".fu_third_section_img", this).each(function(){ var height = jQuery(this).height(); jQuery(".fu_third_section_text").css("height", height); }); }); </script> which aligns the text field to the height of the downloaded image (wordpress):
<div class="row"> <div class="col-sm-6"> <div class="fu_third_section_text"> <h2><?php echo get_option('woo_fu_name_dostoprim1'); ?></h2> <span><?php echo get_option('woo_fu_text_dostoprim1'); ?></span> </div> </div> <div class="col-sm-6"> <div class="fu_third_section_img"> <img src="<?php echo get_option('woo_fu_image_dostoprim1'); ?>" class="img-responsive" alt=""> </div> </div> </div> When you first load the script does not work. Starts to work only after reloading the page. In the console, only JQMIGRATE: Migrate is installed, version 1.4.1. Here is the site http://barbaris-kzn.ru . Help pliz!