Avada Forums Community Forum Links broken on mobile / responsive since ver 5.0 Reply To: Links broken on mobile / responsive since ver 5.0

Michael C
Keymaster
Post count: 552

Hi,

This is happening due to CSS in your plugin – http://rethinkfragility.com/wp-content/plugins/widgetize-pages-light/include/otw_components/otw_grid_manager/css/otw-grid.css?ver=1.1

Either the plugin needs disabled or extra custom CSS added, for example:

@media only screen and (max-width: 767px) {
[class*="column"] + [class*="column"]:last-child {
    clear:both;
}
}