“The backend options panel was completely re-designed and is now responsive and retina ready as well. ”
But ! please i alway changed myself the avia-admin.css that quick css field is whole width. It is definitly to small on default. I changed it that the “Just want to do some quick CSS changes? Enter them here, they will be applied to the theme. If you need to change major portions of the theme please use the custom.css file or the Enfold Child theme.” is above the quick css input field.
Thanks in advance
Hey Guenter,
If you like to make the Quick CSS full width Please try adding this at the very end of your themes / child themes functions.php file:
function admin_head_mod() {
echo '
<style type="text/css">.avia_sidebar_active .avia_control {width: 100%!important;}
.avia_sidebar_active .avia_description {width: 100%!important;float: left!important;padding: 0 0 10px 0!important;}</style>';
}
add_action('admin_head', 'admin_head_mod');
Best regards,
Vinay
thanks vinay – i did this in avia-admin.css
– but your way over the child-theme functions php is much more elegant! Thanks.
PS : i did the button “save” also to the left and i think .avia_sidebar_active is not neccessary – it works good on small screens too.
#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;
}
Hi!
Thanks a lot for the sharing.
Yes, having a functions file that includes those small changes that everyone likes, is a good option to keep the theme up to date for your self.
Keep up the good work and thank you for always sharing and careing!
Best regards,
Basilis