Home › Forums › WoodMart support forum › Product Price colors in Search Results are Not reflecting as SET in Adv Typogra › Reply To: Product Price colors in Search Results are Not reflecting as SET in Adv Typogra
Luke Nielsen
Hello,
10c. Sorry, I don’t have any idea because the CSS that hides the flags comes from their CSS file. Also, you can use the custom code that shows it and forget about this problem.
11a. Selectors in the last response are for the price of the Quick View area.
11b. The custom code for reducing the indent from below for Title, Price, Short Desc.
.product-quick-view .product_title,
.product-quick-view .price,
.product-quick-view .woocommerce-product-details__short-description {
margin-bottom: 10px;
}
Please clarify where the Extra Content block for the Quick View box.
12b.
Color and Bg. color for each widget’s title.
.woocommerce-shop .sidebar-widget .widget-title {
color: blue;
background-color: orange;
}
Changing title style for the “Color” widget.
#woodmart-woocommerce-layered-nav-13 .widget-title {
color: red;
background-color: yellow;
}
Changing title style for the “Color-B” widget.
#woodmart-woocommerce-layered-nav-15 .widget-title {
color: green;
background-color: yellow;
}
The “Size” widget title styles.
#woodmart-woocommerce-layered-nav-14 .widget-title {
color: green;
background-color: yellow;
}
12e.
1. The appearance of the scroll bar depends on the browser.
2. The width of the scroll bar on the desktop can be changed only on these browsers (Chrome, Opera, Edge). This scroll changes with the help of the below custom code.
body .wd-scroll ::-webkit-scrollbar {
width: 10px;
}
3. Design, color, width, and position of the scroll bar on mobile devices depends on the browser, and changing it with the help of the custom CSS code is impossible.
Kind Regards