Hi @perlfan
Here are example CSS codes that will increase font size to example 18px on FiboSearch mobile overlay:
/* Increase font size for FiboSearch suggestion title */
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-st-title {
font-size: 18px !important;
}
/* Increase font size for FiboSearch suggestion price and other meta data */
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-sp {
font-size: 18px !important;
}
/* Increase font size for FiboSearch input field */
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
font-size: 18px !important;
}
/* Increase font size for FiboSearch Show all products */
.dgwt-wcas-st-more {
font-size: 18px !important;
}
Remember that if you want to find the class of a given element, you can always switch to mobile mode and examine the element in the browser. Typically, this mode is under the F12 key or right-click -> inspect and then usign Ctrl + Shift + M will switch you to the mobile view.
Regards,
Kris