Remove lines in MH Magazine theme

  • Unknown's avatar

    Hi,
    I can’t figure out how to remove or change the color of the preset red lines that are beneath the widget titles in MH Magazine Theme.

    Can anybody help me?

    Thanks/
    Eric Diedrichs

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

  • Unknown's avatar

    Hi there!

    If you have a premium account, try adding this to your CSS:

    .wt-layout1 .widget-title
    {
    border-color: #de2b26;
    }

    The part that says “de2b26” is a hex code for that red color. Find the hex number for the color you want.

  • The code above by @jameswelbes will indeed change the color of those lines.

    Just to add, the following will actually remove those red lines beneath the sidebar widgets:

    .wt-layout1 .widget-title {
        border-style: none;
    }

    If you want them removed from footer widgets as well, use this code:

    .wt-layout1 .widget-title, .wt-layout1 .footer-widget-title, .wt-layout3 .footer-widget-title {
        border-style: none;
    }
  • Unknown's avatar

    Thanks guys!
    It worked out great!

  • The topic ‘Remove lines in MH Magazine theme’ is closed to new replies.