Website: https://olivesfordinner.com/
Looking for CSS code that will achieve the following:
-
When typing in email on homepage to sign up for newsletter, making that text appearbigger. It’s so small.
-
When leaving a comment on a recipe post (example: https://olivesfordinner.com/toasted-muesli-recipe/), how to make the text bigger as the reader is typing within it. Again, this text is so small.
-
How to make the text appear bigger in the drop-down text boxes on the left-hand column. They are so tiny! https://olivesfordinner.com/recipe-index/
Thank you!
I have googled lots of CSS code, but nothing I’ve found has affected the text size in these areas at all.
3
Answers
The font size is setting with this
This sets the font size of the
input
,select
andtextarea
elements to11px
.Fix
1 – You can update
font-size
into required sizeBut note, this will effect all the
input
,select
andtextarea
elements in the website2 – You can create a new class with the required
font-size
add this class with elements you need bigger font size, like
Just use the following selectors and change the
font-size
For Header email subscription, drop-down text and comment:
For search:
Footer email subscription:
Issue 1
This will increase the font size for your
Sign up to get new recipes via email.
elementIssue 2
This will fix this issue
Issue 3
This will fix the dropdown lists
Notice
you can add each to the custom css for each page or globally as such
Do know that this CSS code will only effect their respective elements, unlike the css code by others’ answers.