• Resolved douboy

    (@douboy)


    I can’t seem to get the input and button centered on my page. None of the changes I make to the qib-container class seem to do anything.

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

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author taisho

    (@taisho)

    Hello,

    these steps worked for the same problem on a different website. Probably the 1st isn’t needed in this case. Please try them out:

    This moves Add to cart button to the next line instead of keeping it in the same line through inline-block:

    form.cart button[type=submit]:not(#qib_id):not(#qib_id), .add_to_cart_button:not(#qib_id):not(#qib_id), form.cart .qib-container+div:not(#qib_id):not(#qib_id) {
        display: block;  
    }

    Because display: flex eliminates a break which appeared after display: inline-block, margin-bottom needs to be added:

    .qib-container:not(#qib_id):not(#qib_id) {
        display: flex;
        margin-bottom: 10px;
    }

    Change input element to have 100% of available width instead of a fixed number of pixels from plugin’s settings:

    .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {   
        width: 100%;  
        max-width: 100%;  
    }

    div container of the input element needs to be similarly resized:

    .qib-container div.quantity:not(#qib_id):not(#qib_id) {
        width: 100%; 
        max-width: 100%;
    }

    Best regards,

    Ryszard

    • This reply was modified 3 years, 11 months ago by taisho.
    Thread Starter douboy

    (@douboy)

    I got an email reply but don’t see the reply on this thread?? The suggested fix did not work at all. It stacked the + and – buttons on top of the input box.

    Plugin Author taisho

    (@taisho)

    I edited my post immediately because of incorrect formatting (code not formatted as code). Now it is stuck to be manually reviewed by a moderator.

    Plugin Author taisho

    (@taisho)

    That’s what I see on the website in Incognito mode:

    https://i.imgur.com/arG41pv.png

    Isn’t this what You wanted?

    Thread Starter douboy

    (@douboy)

    Yeah. So when I applied your code, the first time, it stacked the buttons and the second time I tried, the buttons were tiny. I’ll try again. Thank you.

    Thread Starter douboy

    (@douboy)

    Is there a way to just center it in the qib-container div without having to change the width. The 100% width looks horrible on mobile. Thanks!

    Plugin Author taisho

    (@taisho)

    I see, what You are looking for is:

    .qib-container:not(#qib_id):not(#qib_id) {
        margin-left: auto;
        margin-right: auto;
    }

    This should work without any of the previous changes.

    Thread Starter douboy

    (@douboy)

    Perfect! I need to learn more CSS. Thank you!!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Center With Button On Shop Page’ is closed to new replies.