I would like to make the custom code snippet area span across the whole table in admin area.
The code works in the browser but does not get deployed with custom CSS in Admin-> appearance --> customize --> additional CSS
What am I missing:
/*manage toolset settings custom code view*/
.toolset-setting-container .toolset-settings-header {
float: left;
width: 100%;
display: contents;
}
.toolset-setting {
position: relative;
float: left;
margin-left: 1%;
width: auto;
}
I would like to see the following view: hidden link
But I keep on seeing the standard view.
Hi,
The CSS code added to the 'Additional CSS' field is included on the front end of the website, but not on the back-end admin area pages.
To include custom CSS code in the admin area, you can either use a third-party plugin or custom code. Here are some useful resources on the topic:
https://wordpress.org/plugins/admin-css-mu/ (plugin)
hidden link
https://wordpress.stackexchange.com/questions/110895/adding-custom-stylesheet-to-wp-admin
regards,
Waqar