Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #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

    #300915

    OH, 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.

    #300916

    Sorry 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.

    #301107

    Hey!

    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!
    Yigit

    #301342
    This reply has been marked as private.
    #301437

    Hey!

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.