Working on my latest Wordpress theme project, I have integrated the Bootstrap framework. One of the styles included in the Bootstrap CSS file is:
input,
textarea,
.uneditable-input {
width: 206px;
}
This style rule is causing issues with how my search button appears, so I am planning to override it in my own CSS file by setting the width to auto. I'm curious if this approach is considered standard practice, or if there are better methods for incorporating frameworks like Bootstrap.