How can I adjust the width of my quantity selector?

Hi need help with my quantity selector. I want to change the with.

See picture.

I use simple theme and the file is product-template.liquid

<!--   Quantity Selector   --> 
    <div class="mobileqty">
    <input type='button' value='-' class='qtyminus' field='quantity' onclick="TextBox_AddToIntValue('product-quantity-{{product.id}}',-1)" />
    
      <input type='text' name='quantity' value='1' class='qty' id="product-quantity-{{product.id}}"/>
    
    <input type='button' value='+' class='qtyplus' field='quantity' onclick="TextBox_AddToIntValue('product-quantity-{{product.id}}',+1)" />
            </div>
   <script>
jQuery(document).ready(function(){
    // This button will increment the value
    $('.qtyplus').click(function(e){
        // Stop acting like a button
        e.preventDefault();
        // Get the field name
        fieldName = $(this).attr('field');
        // Get its current value
        var currentVal = parseInt($('input[name='+fieldName+']').val());
        // If is not undefined
        if (!isNaN(currentVal)) {
            // Increment
            $('input[name='+fieldName+']').val(currentVal + 1);
        } else {
            // Otherwise put a 0 there
            $('input[name='+fieldName+']').val(0);
        }
    });
    // This button will decrement the value till 0
    $(".qtyminus").click(function(e) {
        // Stop acting like a button
        e.preventDefault();
        // Get the field name
        fieldName = $(this).attr('field');
        // Get its current value
        var currentVal = parseInt($('input[name='+fieldName+']').val());
        // If it isn't undefined or its greater than 0
        if (!isNaN(currentVal) && currentVal > 0) {
            // Decrement one
            $('input[name='+fieldName+']').val(currentVal - 1);
        } else {
            // Otherwise put a 0 there
            $('input[name='+fieldName+']').val(0);
        }
    });
});
   </script>
              
            <!--   //Quantity Selector   -->   

HI @WahlkvistAlex

You want to change width ? can you share url please

Yes, sorry for misspelling.

www.smasha.se

hi @WahlkvistAlex

use this css

.mobileqty .qty{ max-width:40px !important;}
1 Like

I do not know where to put this.

go to assist → style.css file add in this file or add me as staff account i will do this for you

@WahlkvistAlex

Got The file?

How do I add you as staff account?

Go to admin settings → click on plan and permission add me as staff

I have sent invitation

hard refresh

done

https://smasha.se/collections/padelracketar/products/padelracket-softee-winner-pro-black-2021

1 Like

Thank you so much! :slightly_smiling_face:

Please like and accept the solution

1 Like