• Resolved umairee95

    (@umairee95)


    Hi, my site is http://www.cricketopinion.com/

    How can I remove the unwanted, gray background space just above the logo image? If I remove the logo image, it disappears and only my menu displays on top.

    Also, how can I reduce the padding just below my main menu? Is there any method to do that?

    • This topic was modified 7 years ago by umairee95.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Michael

    (@mh-themes)

    Hi Umairee95,

    thanks for using MH Magazine lite.

    For CSS modifications, you can always use your browsers inspection tool to inspect the elements on your site and then use that information to add your own code modifications, for example:

    .mh-container-outer { margin: 0 auto; }
    .mh-wrapper { padding: 15px 25px 25px; }

    You can add CSS code in your WordPress dashboard under Appearance => Customize => Additional CSS.

    Thread Starter umairee95

    (@umairee95)

    Thank You. That problem is solved. Now I am looking at inspection tool and adding the following CSS to reduce the gap between featured post and exclusive stories area on my home page http://www.cricketopinion.com/
    .panel-grid-cell {
    padding-left: 0px;
    padding-right: 15px;
    }
    It seems to be working alright when I change pixel value in inspection tool, but not after I paste it in the additional CSS area. I can’t figure out the problem here.

    Michael

    (@mh-themes)

    Please keep in mind that .panel-grid-cell is a class that is being used multiple times on your website, so it also affects other elements. Instead you could do something like:

    #pgc-w58eb9a0d28ff6-0-1.panel-grid-cell {
        padding-left: 0;
    }

    By the way, the plugin you’re using for these panels isn’t related to the theme. If you need assistance with this plugin, then please contact the plugin developers, thanks.

    Thread Starter umairee95

    (@umairee95)

    Even after putting the above code, the gap is still the same. I am using Site Origin page builder which does not seem to working well with this. Thanks anyway.

    Michael

    (@mh-themes)

    does not seem to working well with this.

    The plugin itself does what it’s supposed to do. But you’re modifying code and that will only work if you modify the code correctly. However, as mentioned, if you need help with the plugin, please contact the plugin developers.

    You also could just use the widgetized Homepage template of the theme and then just place the widgets in the widget areas. Usually there is no need to create these sections manually with shortcodes.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Padding issue’ is closed to new replies.