• Resolved thompsonaire

    (@thompsonaire)


    I have three different sites running the same theme. I have no issues with the Quantity display in two of the carts but in one I have issues. here are the sites and screen shots.
    The first two sites allow you to put more than 10 items into your cart and it will show the numbers 10-99
    TheAmazingNoah.com and FlipFlopFantasies.com

    However in the cart for ClassicOnlineServices.com once you pass 10 you can not see the multiples 11,12,13….

    I do not know why they are different. Any clues would be great.

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

Viewing 8 replies - 1 through 8 (of 8 total)
  • Looks like a different font size from the other two.

    Try this custom css:

    .woocommerce .quantity .qty {
      width: 5em !important;
    }

    It goes at:
    Dashboard > Appearance > Customize > Additional CSS

    Thread Starter thompsonaire

    (@thompsonaire)

    Trying it now.

    Thread Starter thompsonaire

    (@thompsonaire)

    .woocommerce .quantity .qty {
    width: 5em !important;
    }

    When I copy and paste the first part is in RED.
    The
    .woocommerce .quantity .qty

    Appears in RED letters. Page did not change. It is still only showing one integer. So the number 13 only shows 1 and the number 25 only shows 2 I am only getting the first number of two digit numbers.

    The line above:

    .page .site-main .entry-title {
    	display: none;

    doesn’t have a closing bracket as it should, so the new line that follows is not recognised.

    When you have added the bracket, copy and paste all your custom css here to check that it is syntactically correct.
    https://jigsaw.w3.org/css-validator/#validate_by_input

    Thread Starter thompsonaire

    (@thompsonaire)

    Hi and Thank you Lorro

    I am sorry I do not understand. I see a bracket so I do not know what you are reffering to.

    The Text you wrote does not appear to be anything like the other text I was given in the first reply. So now I am lost. I have this from the first person.

    .woocommerce .quantity .qty {
    width: 5em !important;
    }

    That does have a bracket right after the .qty and again after the important;

    Then you wrote
    .page .site-main .entry-title {
    display: none;

    Yours is completely different and only has one [ and different words. So I am unsure what I am supposed to do with that. You also made reference to a closing bracket. I see a [ before “width and a ] after important; so it seems to me to have a closing bracket.

    So I am still lost. I also tried going back and changing the font size on the site an that did not make a difference either.

    Thank you for trying to help me.

    Jeff

    Thread Starter thompsonaire

    (@thompsonaire)

    OK,
    I will admit I am completely UN educated in code. But I promise I try my best to understand. LORRO! I got it. I figured it out. I now understand what you were talking about. It was not the code I was adding that was missing the } It was the last custom code I had added that was missing the closing bracket.

    I went back and added a closing } to the previous code and POOF it all worked.

    Sorry it took a sledge hammer to get that thru my skull.

    I am slow but I am trainable.

    Thank you It just took me a while to decode the code.

    Jeff

    The style:

    .page .site-main .entry-title {
      display: none;

    This was there already. But its not valid css. It must have a bracket after it. So it should be:

    .page .site-main .entry-title {
      display: none;
    }

    Then, after that, you should paste the css in my first post.

    What has happened is that because the style that was there already were not valid css, then the new style was not recognised.

    Mirko P.

    (@rainfallnixfig)

    Hi @thompsonaire,

    It’s been a while since we heard from you, so I’m marking this thread as resolved.

    if you have any further questions, you can start a new thread.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Quantity space in Cart’ is closed to new replies.