Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Job a11n

    (@jobthomas)

    Automattic Happiness Engineer

    Hey @masurana – first of all, this is actually related to Storefront and not WooCommerce.

    Second, this can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following code:

    /* vertical alignment widgets */
    
    @media (min-width: 768px) {
        .header-widget-region .col-full {
            display: flex;
            justify-content: space-between;
        }
    }

    If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).

    Thread Starter masurana

    (@masurana)

    Thanks Job, it’s done.
    By CSS this horizontal line is correctly adjusted. But can it possible to increase gap between these two widgets? (see screenshot – https://ijewelmart.com/wp-content/uploads/2018/11/widgetgap.jpg )
    Thanks again for your support.

    Plugin Support Job a11n

    (@jobthomas)

    Automattic Happiness Engineer

    Hey @masurana – I’d advise you to have a look at the options of flexbox in order to try to increase that yourself. On justify-content, this is a great explanation of what it does: https://css-tricks.com/snippets/css/a-guide-to-flexbox/#article-header-id-6

    I’ll mark this thread as resolved now; that link should have all the tools you need. ??

    Thread Starter masurana

    (@masurana)

    Ok Job,Thanks.
    I will try.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Widgets under header manage in horizontal line’ is closed to new replies.