When I select ‘Search’ from the WPLMS top menu it is displayed full page, all black and huge fonts! What should I do to make it smaller? Perhaps there is a page which I should set in admin mode? I dod not find it in documentation
https://somup.com/c31rIotdrZ
hi
Go to wp-admin->appearance->customiser->add custom CSS-> add these lines and save.
form#searchform input{font-size: 2rem !Important;}
The above code worked fine. then,
1. Font color black
2. Background color white
How do I put the code to do it?
hi
you can use this:
div#searchdiv{
background: #fff;
}
#searchdiv input[type=text]{
color: #000;
border-bottom: 3px solid
}
#searchdiv>span:before{
color: #000;
}
The above code worked fine.
Thank you very much. close this topic
good to know this works for you
topic closed