Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #989235

    Hi

    how can I make the quick css window bigger – ie wider and taller so I can see more

    http://wpg.com.gridhosted.co.uk/wp-content/uploads/2018/07/quickcss.png

    thanks!

    #989493

    Hey smoothbob,

    You can change that in the avia_admin.css file, look for this class:

    .avia_sidebar_active .avia_control

    Best regards,
    Rikard

    #989671

    Hi
    I added the framework and css folders to the child theme but could you tell me which file or files I need to edit – I see the class in various files and set it to 80% width and the description to 20% but my edits had no effect

    thanks again

    #989683

    ignore this edit

    • This reply was modified 6 years, 4 months ago by smoothbob.
    #989688

    Hi,

    You can simply adjust the height and width below scrollbar – https://imgur.com/a/otMjqXX

    Regards,
    Yigit

    #989694

    Hi

    I am aware of that, but it is not a good solution, better to resize it permanently

    thanks

    #989795

    Hi,

    Please add following code to bottom of functions.php file in Appearance > Editor

    function av_larger_quick_css() {
      echo '<style>#avia_quick_css .avia_control textarea {
        min-height: 400px;
    }
    .avia_sidebar_active #avia_quick_css .avia_description {
        width: 30%;
    }
    .avia_sidebar_active #avia_quick_css .avia_control {
        width: 70%;
    }
    </style>';
    }
    add_action('admin_head', 'av_larger_quick_css');

    Best regards,
    Yigit

    #989810

    perfect thanks!

    #989817

    i do allways this code to functions.php of my child-theme – it deactivates the reset all button too:

    function admin_head_mod() {
    echo '<style type="text/css">
    #avia_quick_css .avia_description {float: none;margin-bottom: 20px !important;padding-left: 0 !important;width: 98%}
    #avia_quick_css .avia_control {float: left;max-width: 98% !important;width: 98% !important}
    .avia_footer_links li {float: left;padding-right: 20px}
    .avia_footer .avia_footer_save {float: left}
    .avia_reset {pointer-events: none !important }
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');
    #989831

    thanks :)

    #989833

    Hi,

    You are welcome! :)
    Thanks @Guenni007

    Best regards,
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Quick css window size’ is closed to new replies.