jQuery(function() { var $ = jQuery; $(document).ready(function() { if (window.location.href.endsWith("/kontakt.html")) { var $elem = $("#870589742250210102"); $elem.css('background-color', 'rgba(213, 213, 213, 0.9)'); $elem.css('text-align', 'left'); $('#banner').find('.wsite-section-elements').append($elem); var $quote = $('.wsite-multicol-table').eq(0); $elem.find('.colored-box-content').prepend($quote); $quote.find('.paragraph').css('margin-bottom', '0'); } adjustButtonsWidth(); adjustButtonsPosition(); }); function adjustButtonsWidth() { $('.wsite-section-elements').each(function() { var buttons = $(this).find('.wsite-button-large'); var widths = []; buttons.each(function() { $(this).css('text-align', 'center'); $(this).find('span').css('width', '100%'); widths.push($(this).width()); }); var max = Math.max(...widths); buttons.each(function() { $(this).width(max); }); }); } function adjustButtonsPosition() { setTimeout(function() { $(".wsite-button-large").each(function (){ var containerHeight = $(this).parent().parent().height(); var pos = $(this).position().top; var height = $(this).outerHeight(); var calcd = containerHeight - pos - height; if (calcd < 0) calcd = 0; $(this).css('margin-top', calcd + 'px'); }); }, 500); } });