Website: https://olivesfordinner.com/
Look for CSS code that can achieve the following effects:
Make the text larger when entering your email to register on the home page. It's too small.
When leaving a comment on a recipe post (eg: https://olivesfordinner.com/toasted-muesli-recipe/), how to make the text larger as readers type. Again, this text is too small.
How to make the text in the drop-down text box on the left column larger. They are so small! https://olivesfordinner.com/recipe-index/
Thanks!
I've searched a lot for CSS code, but none I've found affect the text size of these areas.
The font size is set as follows
This will set the font size of the
input
,select
andtextarea
elements to11px
.Repair method
1- You can update
font-size
to the desired sizeBut please notethat this will affect all
in the siteinput
,select
andtextarea
elements2- You can create a new class
with the required
font-sizeAdd this class to elements that require a larger font size, such as
Question 1
This will increase the font size of your
Get new recipes via email
elementQuestion 2
This will fix this issue
Question 3
This will fix the dropdown
Notice
You can add custom CSS for each question to each page or globally as shown below
Please note that this CSS code only works on the respective elements, unlike the CSS codes in other answers.