Tagged: font
-
AuthorPosts
-
August 6, 2014 at 7:17 pm #300800
I can barely read the font in the text fields. Can I change this? Please, I can’t see what I am doing.
Thanks
August 7, 2014 at 2:34 am #300915OH, well I can see it better in the “visual editor” tab over the “text” tab. This is in the ADD TEXT BOX.
In the ADD CODE BLOCK – can’t see anything.
Didn’t find anyplace to change this in the Theme options.
Even this entry box is very had to read. Looks like here it is controlled by the following css.
media="all" #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select { border-color: #e1e1e1; background-color: #fcfcfc; color: #919191; }
Maybe I can override this in the theme. I’ll try.
August 7, 2014 at 2:47 am #300916Sorry I can’t find it in the css. It is all minified.
Hope you can help. This is impossible situation and my eye are burning from working with the theme.
August 7, 2014 at 1:56 pm #301107Hey!
Please upload your screenshots on imgur.com or Dropbox public folder and post the links here.
You can add your code to Quick CSS in Enfold theme options under General Styling tab#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select { border-color: #e1e1e1; background-color: #fcfcfc; color: #919191; }
Cheers!
YigitAugust 7, 2014 at 9:01 pm #301342This reply has been marked as private.August 8, 2014 at 5:07 am #301437Hey!
Thank you for using the update.
Please use this on functions.php to change the color of the text inside the text editors:
function ava_change_text_color() { ?> '<style type="text/css">.avia-style input[type="text"], .avia-style input[type="input"], .avia-style input[type="password"], .avia-style input[type="email"], .avia-style textarea, .avia-style select { border-color: #e1e1e1; background-color: #fcfcfc; color: #000000 !important; }</style>'; <?php } add_action('admin_head', 'ava_change_text_color');
Regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.