• Resolved robclewis

    (@robclewis)


    Using Customizr theme, is there anyway to modify the span of the footer widgets so that they are 3-6-3, instead of 4-4-4?
    If not, is there any other way to override the widths?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Yes, is pretty simple, add this to your child-theme functions.php

    add_filter('footer_one_widget_class', function(){ return span3; });
    add_filter('footer_two_widget_class', function(){ return span6; });
    add_filter('footer_three_widget_class', function(){ return span3; });

    Thread Starter robclewis

    (@robclewis)

    Thanks, worked perfectly.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is there a way to make middle footer widget wider?’ is closed to new replies.