jQuery(document).ready(function($) { var top_header = jQuery('.before-header-section .top-header-widget'); if( top_header.length != 0 ) { var total_widget = top_header.length; top_header.removeClass('col-md-3'); top_header.removeClass('col-sm-3'); var width_area = 12 / total_widget; top_header.first().addClass('text-left'); top_header.addClass('col-md-'+width_area); top_header.addClass('col-sm-'+width_area); top_header.not(':first-child').not(':last-child').addClass('text-center'); top_header.last().addClass('text-right'); } var bottom_header = jQuery('.after-header-section .after-header-widget'); if( bottom_header.length != 0 ) { var total_bottom_widget = bottom_header.length; bottom_header.removeClass('col-md-3'); bottom_header.removeClass('col-sm-3'); var width_area = 12 / total_bottom_widget; bottom_header.first().addClass('text-left'); bottom_header.addClass('col-md-'+width_area); bottom_header.addClass('col-sm-'+width_area); bottom_header.not(':first-child').not(':last-child').addClass('text-center'); bottom_header.last().addClass('text-right'); bottom_header.last().addClass('last'); } });