Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

file Icons in search not showing

More
10 years 10 months ago #4244 by bsbad
Icons in search not showing was created by bsbad
Hello Olivier,

the search icons for search and remove are not showing, if I enable search.

<span class="icon-search"></span>
and
<i class="icon-remove"></i>

are both empty.

Did I need to upload images or change the css?

I'm looking forward to your answer.

Ruth

Please Log in or Create an account to join the conversation.

More
10 years 10 months ago - 10 years 10 months ago #4245 by admin
Replied by admin on topic Icons in search not showing
Hello Ruth,

this is an oversight on my part, I will fix it for the next update. I have assumed the use of Bootstrap in the template, which may not be the case.

In the meantime, you can add some CSS:
.icon-search::before {
	font-family: 'SYWfont' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
        content: "\e68f" !important;
}

.icon-remove::before {
	font-family: 'SYWfont' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
        content: "\e7ed" !important;
}

This should fix it.

Olivier.
Last edit: 10 years 10 months ago by admin.

Please Log in or Create an account to join the conversation.