• Resolved xarcadia

    (@xarcadia)


    I am creating a product here, and everything is working great, but you will notice that the quantity field has the “-” on the left hand side and then the “+” is below that instead of on the right hand side of the quantity field. I need to find a way to have them both be on the same line, either by shrinking the font used to describe the item, shrinking the size of the field, or shrinking the size of the + and -. Could you let me know where I could find this?

    https://wordpress.org/plugins/jigoshop/

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

    You need to add more specific styles for the input in your theme (safest solution – allows to update Jigoshop). The proper way would be adding following line to your theme CSS file:

    .content .cart .quantity input.qty {
        width: 20px;
    }

    I hope this solves your problem.

    Thread Starter xarcadia

    (@xarcadia)

    Thank you so much for responding. I am using the infocus theme from mysitemyway and i put the above text into the custom css area of the theme manager, but it did not work. Could you take a look?

    Hello @xarcadia

    Ahh, I made a slight mistake, here’s correct code:

    #content .cart .quantity input.qty {
        width: 20px;
    }
    Thread Starter xarcadia

    (@xarcadia)

    Worked perfectly. Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Edit Individual Product Page’ is closed to new replies.