Okay
  Public Ticket #2622152
see title in backend
Closed

Comments

  •  1
    leonievanderlaan started the conversation

    In the backend, when I want to add/adjust products for the webshop, the seo title I've added to the products shows up in a vertical column, which makes it an impossible job to find the right products... It requires endless scrolling to find it, because each product needs 15 cm of space, just because of that seo title. I can't seem to adjust the width of that particular thing.... help!

  • [deleted] replied

    Hi,

    As I understand you want to occupy all row to display the title as shown here:

    medium
    (view large image)

    With this CSS:

    .woocommerce .products .product .item-info .item-info-row {
        flex-direction: column;
    }
    .woocommerce .products .product .item-info .item-info-row>.price-column {
        padding-left: 0;
    }
    

    And as well you can adjust the size of font:

    medium
    (view large image)

    With this CSS:

    .woocommerce .products .product .item-info .item-info-row>.title-column a {
        font-size: 18px;
    }
    
    And if you want the price above title:

    medium
    (view large image)

    With this CSS:

    .woocommerce .products .product .item-info .item-info-row>.title-column {
        order: 2;
        padding-top: 10px;
    }

    Does this work for you?