Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1401738

    Tim
    Participant

    Hi,

    I have attached two screenshots. You can see that for instance the cart fly out is changing in two different lay-outs. Actually the whole template seems to change.

    Do you have any clue why this is happening?

    These are the links to see the change:
    Normal: http://nlbunk-mekenassa.savviihq.com/
    Change: http://nlbunk-mekenassa.savviihq.com/my-account/

    Thanks

    #1402218

    Rad
    Moderator

    Hi there,

    Thanks for writing in.

    You mean the button size? It’s the only difference I could see between those dropdowns. And please provide your login credentials in private reply. The cart is inconsistent, I added 4 items and it still display 0 items on other pages and home page. Could be due to cache.

    Thanks!

    #1407741

    Tim
    Participant
    This reply has been marked as private.
    #1407900

    Christopher
    Moderator

    Hi there,

    Your custom code is causing issue, please see :

    .woocommerce-account .button {
        font-size: 90%;
        margin-right: 5px;
        border-radius: 0px;
        padding: 5px 10px;
        background-color: #1f89e5;
        border: 0px;
    }

    Please add this code to fix the issue :

    li.cart-link a.button {
        font-size: 16px !important;
        padding: 0.563em 1.125em 0.813em;
    }
    li.cart-link a.button:hover {
        color: #ffffff;
        border-color: rgb(227,90,26);
        background-color: rgb(227,90,26) !important;
        text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);
    }
    

    Hope it helps.

    #1426131

    Tim
    Participant

    Hi Christopher,

    Sorry for my late answer. But this solves the problem. Thanks!

    Only one thing though; where did you find this custom code? I have checked the css file in child theme and custom css in customizer.

    Thanks and have a great weekend:)

    Cheers

    #1426627

    Rad
    Moderator

    Hi there,

    It’s under your cornerstone’s custom CSS, on the very top.

    Thanks!