Footer Widgets in Responsive View

  • Thank you for turning on the footer widgets in Mimbo Pro – I assume this was you?

    Are you planning to add these widgets and the footer area to be responsive?

    If you are not planning to update the theme I do understand. Could you then please share with me the CSS to reduce the contents of those placeable widgets for the footer area?

    I have taken some measures to reduce the height and width and the size of the widget output to be reduced by a percentage. However I can’t find the div id most relevant to that area. It seems that it’s only the clear or reset CSS exists.

    Please let me know so I know if I should continue my attempts on my own…

    The blog I need help with is: (visible only to logged in users)

  • Hi – yes it was me that made the footer display again :)

    The footer widgets are already responsive however the css styles you have added for the full width view are overriding the responsive styles. This can be worked around with some more custom css styles.

    You need to wrap the styles in a ‘media query’. Something like:

    @media screen and (max-width: 600px) {
    
    #meta .widget {
    // rules here
    }
    
    }
  • The topic ‘Footer Widgets in Responsive View’ is closed to new replies.