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!
Hey smoothbob,
You can change that in the avia_admin.css file, look for this class:
.avia_sidebar_active .avia_control
Best regards,
Rikard
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
ignore this edit
Hi,
You can simply adjust the height and width below scrollbar – https://imgur.com/a/otMjqXX
Regards,
Yigit
Hi
I am aware of that, but it is not a good solution, better to resize it permanently
thanks
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
perfect thanks!
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');
thanks :)