• Resolved diannadk

    (@diannadk)


    How do I change the space between the black line and the headline text in the sidebar and foodter widget? and how do I change the space at the bottom of the widget. i.e. from the black line and the space up to the text in the widget

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello @diannadk,

    Hope you are having a great day and thanks for contacting us!

    Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:

    hr {
        margin: 35px 0;
    }

    Then reduce the 35px number to the size of your choice.

    ?Try it and let me know how it worked.
    Kind regards,
    Diego

    Thread Starter diannadk

    (@diannadk)

    It works fine ??
    How do I change the headline where the black line is in the widget?
    Has removed the black line with this code:

    .sidebar-no-borders .widget.widget_text {
    border-top: none;
    border-bottom: none;
    margin-bottom: -30px;
    }

    The space in the footer widget, have I used this code if some one have the same issue.

    .footer-row-2 {
      margin-bottom: -30px;
    }
    .footer-widgets .widget-title {
      margin-bottom: 25px;
    }
    .footer-widgets {
      margin-top: -10px;
    }
    • This reply was modified 6 years, 6 months ago by diannadk.
    Thread Starter diannadk

    (@diannadk)

    I solved my issue with widget and here is my css if some one have the same issue.
    Thanks to Diego for help ??

    .sidebar-no-borders .widget.widget_text {
    border-top:0px;
    border-bottom: 0px;
    padding:0px;
    }
    .footer-row-2 {
      margin-bottom: -30px;
    }
    .footer-widgets .widget-title {
      margin-bottom: 25px;
    }
    .footer-widgets {
      margin-top: -10px;
    }
    .widget{
     margin-bottom: 10px;
    }

    You’re welcome! Glad to help.
    And thanks for sharing your results!

    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do I change the space in widget?’ is closed to new replies.