Home Forums WoodMart support forum HTML block in Empty Cart not working. Margin below Short Desc, on Product page Reply To: HTML block in Empty Cart not working. Margin below Short Desc, on Product page

#342295

Luke Nielsen
Keymaster

Hello,

5b. To mitigate some of the risk of a slow font download, most browsers implement a timeout after which a fallback font (spare font) will be used.

6d,e. You can also use this .wd-list .list-content custom selector.

6b. Try using these selectors to edit titles (also see below video).

.page h4, .single h4, .archive h4

https://monosnap.com/file/9SvzQ6IdK0f96QbUBooVyuvrP3tulP

.page h3, .single h3, .archive h3, .blog h3

https://monosnap.com/file/CIkL9hgbN1cP4DpqEfxS16zPH3tU0k

PS: You can replace the h3 tag with any other title tag.

7. I have prepared custom CSS code for changing icons in mobile navigation.

Search:

.mobile-nav .searchform .searchsubmit:after {
    content: ' ';
    background-image: url('https://www.vasangini.com/wp-content/uploads/2021/12/Vas-search-svgrepo-com-6-25x25-3rd-A.svg');
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
}

Whishlist:

.wd-nav-mobile .menu-item-wishlist>a:before {
    content: ' ';
    background-image: url('https://www.vasangini.com/wp-content/uploads/2021/12/wishlist-1539830801-4th-25x25-1.svg');
    background-size: 16px 16px;
    height: 16px;
    width: 16px;
}

https://monosnap.com/file/QAL5NYEifn9BVxFvPSTB5NNwil3Ki2

8. In order to get rid of that issue, enter the below code to the “Global Custom CSS” area.

.hide-larger-price .wd-products-nav .price *:not(.price) {
	pointer-events: none;
}

Kind Regards