• Resolved Jan

    (@jannetto96)


    good evening. I need a plugin that allows me to correctly display the buy now buttons to give my store an elegant design. I also need to know how to make the product categories smaller. I tried a smaller size on photoshop but when I load them on wordpress, it displays them as big as before.

    I trust you for a kind reply.

    with regard,
    Jan

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    First, why not change “Aggiungi al carrello” with “Acquista ora” or something shorter? It’s so long for a button and your button will still be big with a big text.

    And with some Css you can edit the buttons: some border-radius, some padding 5px 15px, and maybe change the button background to white and color text to #06243b (blue) with borders in blues #06243b too. And a text-align: center to center buttons…

    An example:

    add-to-cart-button {
    text-align: center;
    }

    add-to-cart-button a {
    border-radius: 5px;
    padding: 5px 15px;
    }

    .button.primary:not(.is-outline) {
    background-color: #fff;
    color: #06243b;
    border: 1px solid #06243b;
    }

    It will be looks something like this: https://ibb.co/G5zZ2wQ (Categories smaller too).

    As plugin, there is “Woo Button Text” but seems not updated, so i don’t recommend use it, it will be at your own risk.

    For categories menu you can make the text a little small with:

    .widget ul {
        margin: 0;
        font-size: 14px;
    }

    Try to creat a Child-theme and use it to edit your css as u like, like this all modifications won’t be lost if you update the theme…

    Good luck!

    Kenin

    (@kbassart)

    Automattic Happiness Engineer

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Buy Button & Shop categories images problems’ is closed to new replies.