Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Jeremiah

    (@jprummer)

    Looks like you just need to force it to show inline. Something like:

    span.cartcontents{
    display: inline !important;
    }

    You can style that to adjust the margin, etc. If you need extra help we have a css customization service.

    Thread Starter dgibson_88

    (@dgibson_88)

    That code you included did the trick. On the margins though I tried to add a margin and padding but the cart icon and text are still too close to the top. I ended up adding this code:

    span.cartcontents {
    position:relative;
    top:9px;
    display: inline !important;
    }

    That put the text where I wanted it but didn’t move the cart icon. Any suggestion?

    Plugin Contributor Jeremiah

    (@jprummer)

    You’ll need to target the element above that for your positioning styles. example:

    a.wpmenucart-contents{
    top: 9px !important;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Menu cart not on one line’ is closed to new replies.