Real Soccer
Fix Sub Menus
Install the “TC Custom JavaScript” plugin, then go to Appearance > Custom JavaScript and paste in the following:
1 2 3 |
jQuery(window).load(function() { jQuery('#gdlr-main-navigation').superfish('destroy'); }); |
Improve Mobile Display
Go to Appearance > Customize > Additional CSS and add the following:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
@media only screen and (max-width: 767px) { .dl-trigger { display: none; } .gdlr-logo { max-width: none; } .gdlr-logo > a > img { max-width: 50px; } #gdlr-responsive-navigation { height: auto; } } |