interference with zip code plugin
-
hello, I have installed one zip code plugin but it is also showing in select options tab (see in attached pictures). I want to remove this check availability option from select options.
Attachments:
You must be
logged in to view attached files.
Hello,
Thank you very much for choosing our theme and for contacting us.
Please add this code to the Theme Settings > Custom CSS > Global:
.product-grid-item .wczpc_maindiv{
display:none;
}
Best Regards
it is working, I have another question, as you can see in the attachment when I select the colour which I want to buy there is an underline under it of black colour, is there a way to change the colour of it to white or any other colour so that it will be easy to see which colour is selected.
Attachments:
You must be
logged in to view attached files.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
body .woodmart-swatch.active-swatch{
border:3px solid white;
}
You will get this result: https://prnt.sc/t3sj7h
Best Regards
I have another issue here, I am not able to change this accordion colour from white to some other colour, please tell me how to do this, see the attachment.
Attachments:
You must be
logged in to view attached files.
Hi,
Try to add the following code snippet to the Custom CSS area in Theme Settings.
/* ACTIVE TAB TITLE */
body.wpb-js-composer .vc_tta-color-black.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title>a {
color: blue;
}
/* TAB TITLE */
body.wpb-js-composer .vc_tta-color-black.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title > a {
color: red;
}
/* TAB CONTENT */
body.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-body {
color: yellow;
}