Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #193284

    A while back, I was kindly given this code from Support to make the Woo Commerce cart show up in responsive mode on this page: http://tested-marketing.com/sign-up/

    .responsive .cart_dropdown {
    display: block !important;
    }

    For some reason it has now stopped working. Could an Enfold or Woo update have changed something.? I tried to find the problem, but wasn’t able to. Thanks for any help you can give! Mike.

    #193443

    Hi mhiller!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    @media only screen and (max-width: 767px) {
    .responsive .cart_dropdown {
    display: block;
    }}

    Regards,
    Yigit

    #193477

    Thanks Yigit!! Your code improves things by keeping the shopping cart visible on the header down to 767px width, then it disapears, so something else must be going on :-(. Mike

    #193479

    Hi!

    Please add !important to the same code to force it, so it should be

    @media only screen and (max-width: 767px) {
    .responsive .cart_dropdown {
    display: block!important;
    }}

    Best regards,
    Yigit

    #193496

    Thanks Yirgit!

    I had tried adding “Important,” but when I looked at the code I saw that I had misspelled it. But even when I corrected the spelling, it still doesn’t work. I can live without it, bit it would be a nice feature to have. Mike.

    #193534

    Hi Yirgit,

    Turns out that the old code was being cached in CloudFlare. Once I purged the cache, it worked great! Thanks for all your help!!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Responsive Woo cart display now not working’ is closed to new replies.