Not sure you will get any help from the author. I searched high and low for an answer and eventually got this from a very clever developer;
.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
border-radius: 7px;
}
and this;
.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit {
border-radius: 7px;
}
Hope this helps anyone else who gets stuck with this.
@troyw2015 no funciono doc, a menos que sea asi en el tema OceanWp.
la barra de búsqueda queda igual de cuadrada
@troyw2015
esta me ayudo a mi
.dgwt-wcas-search-wrapp {
width:400px;
}
body .dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
border-radius: 20px;
border:2px solid #ff6600;
}
Hello,
Following CSS makes rounded corners including submit button:
.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
border-radius: 50px;
}
.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit {
border-radius: 0 50px 50px 0;
}
If you don’t familiar with custom CSS, take a look at this video.
Best
Damian