Is there also a way of individually changing the background colour of the fly-out (separate from the buttons). I wanted to get a light grey transparent background if possible.
sure. see how the background color is white on the fly out? I know I can change it to color in the settings but it wont let me make it transparent. and if I change the background color, the button colour also changes.
Hi,
I have a few things I'd like to know in regards to the menu cart icon
1. Can I hide the amount?
2. Can I change the red colour (number of items in the cart)
3. On mobile the cart is nested in the drop down menu, how can I get it to display next to the "burger"?
Hi Emilia,
Thank you for contacting WPClever Support Forum.
We’ve received your ticket and assigned one of our developers to help you with that.
He’ll be looking into your question and responding with specific instructions as soon as possible.
Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.
Best regards.
Janilyn T. - WPClever Support Agent
Hi Emilia,
1. You can use CSS:
span.woofc-menu-item-inner-subtotal {
display: none;
}
2. You can use CSS:
//Color: yellow
.woofc-menu-item .woofc-menu-item-inner:after {
background-color: yellow;
}
3.This is not part of our options
Best regards,
Henry N.
Hi Triston,
Thank you so much for that.
Is there also a way of individually changing the background colour of the fly-out (separate from the buttons). I wanted to get a light grey transparent background if possible.
Thanks again. I'm super happy with this plugin.
Hi Emilia,
Can you send me the screenshot?
Best regards,
Henry N.
sure. see how the background color is white on the fly out? I know I can change it to color in the settings but it wont let me make it transparent. and if I change the background color, the button colour also changes.
Thanks
Hi Emilia,
You can try this code:
div#woofc-area {
background-color: rgb(0 0 0 / 30%)!important;
}
It's look like: https://prnt.sc/w4eolt
Best regards,
Henry N.