badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Change Language in Hover Text

#69542

Hi @johann-haker,

Sorry the hover text “Go to Top” on Go to Top button and “Search” text on Search field cannot be changed or removed. Actually it’s the attribute used for the elements. To remove or change the text you need to hire a developer to customize the code for you.

And yes for the “search” placeholder text we can do a tricky thing. Like you can change the color to a transparent so that it makes a feel of hiding the placeholder text. So to make the text color to transparent go to ‘Appearance > Customize > Additional CSS’ and paste the below custom CSS Code.

input.s::-webkit-input-placeholder {
	color: transparent;
}
input.s::-moz-placeholder {
	color: transparent;
}
input.s:-ms-input-placeholder {
	color: transparent;
}
input.s:-moz-placeholder {
	color: transparent;
}

Thanks