I am currently in the process of designing a blog template using Bootstrap 5.
While working on creating the search box, I encountered a minor issue.
The code snippet below has provided me with a small close button:
.input-group-append .btn {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
I want to change the default icon used as the close button
I have tried without success to target the default close button icon that Bootstrap uses.
Due to this, I am unable to modify it in any way, such as replacing the image or styling it with CSS.
Queries:
- Does Bootstrap utilize an image for the close icon? If yes, what is its name and how can I swap it out?
- Alternatively, is it possible to alter its appearance using CSS?