Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Thimo Grauerholz

    (@pr3ss-play)

    you may exclude the input styles of spreadplugin inputs.

    see your style @

    button, input[type="button"], input[type="submit"], input[type="reset"] {
        background-color: #333333 !important;
    }

    and

    utton, html input[type="button"], input[type="reset"], input[type="submit"] {
        color: #fff;
        font-family: "Open Sans";
        font-size: 14px;
        line-height: 100%;
        text-transform: uppercase;
        transition: background 0.2s ease-in-out 0s;
    }

    Thread Starter greenvespa

    (@greenvespa)

    Thanks Thimo, i’m sorry but i don’t know how to exclude input styles of spreadplugin inputs. I looked inside wp-spreadplugin/css/spreadplugin.css but i didn’t find what you suggest.
    Could you please explain me better?
    Thanks.

    Plugin Author Thimo Grauerholz

    (@pr3ss-play)

    This CSS is defined in your template. You could exclude spreadplugin input by adding

    :not(.spreadplugin-article input[type=submit])

    to these definitions or overwrite the styles.

    Thread Starter greenvespa

    (@greenvespa)

    OK, i did it! I choose to overwrite the styles and now the icon background is white and the shopping cart icon black.

    But the problem that icon disappear when i pass over with the mouse still remain. Passing over show me for less than a second also some social icons and shopping cart disappear.

    Live example here: https://www.casabastiano.com/shop/

    Thanks.

    Thread Starter greenvespa

    (@greenvespa)

    I didn’t find a way to show shopping cart icon in min-view when i pass over.
    Still waiting for a solution. Could someone help me?
    As you can see here https://www.casabastiano.com/shop/ shopping cart icon for each product is ok but someone pass over the icon disappear.
    Thanks.

    Plugin Author Thimo Grauerholz

    (@pr3ss-play)

    use

    .spreadplugin-items input[type="submit"]:hover {
        background-color: #ef6812 !important;
        background-position: -350px -185px;
    }
    Thread Starter greenvespa

    (@greenvespa)

    Yes! It works!
    Thanks a lot!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Shopping cart icon disappear on min view’ is closed to new replies.