Reply To: Typography.php and unsemantic-grid.css

Home Forums Support Typography.php and unsemantic-grid.css Reply To: Typography.php and unsemantic-grid.css

Home Forums Support Typography.php and unsemantic-grid.css Reply To: Typography.php and unsemantic-grid.css

#161840
Tom
Lead Developer
Lead Developer

Hi there,

Those are the classes for the footer on desktop if you set it to 3 columns in “Customize > Layout”.

To adjust the width on tablet, you can add this PHP:

add_filter( 'generate_footer_widget_1_tablet_width','generate_change_footer_widget_1_tablet_width' );
function generate_change_footer_widget_1_tablet_width()
{
      return '100';
}

add_filter( 'generate_footer_widget_2_tablet_width','generate_change_footer_widget_2_tablet_width' );
function generate_change_footer_widget_2_tablet_width()
{
      return 100';
}

add_filter( 'generate_footer_widget_3_tablet_width','generate_change_footer_widget_3_tablet_width' );
function generate_change_footer_widget_3_tablet_width()
{
      return '100';
}