What is the syntax in splunk advanced xml to change the size and position of the panel label?
That sounds to me like a case for adding custom CSS in etc/apps/app_name/appserver/static/application.css. The relevant selector likely is .splHeader-dashboard h2
if you want to modify everything, if you want to modify one specific view you'll likely need body.splView-view_name .splHeader-dashboard h2
, and so on.
That sounds to me like a case for adding custom CSS in etc/apps/app_name/appserver/static/application.css. The relevant selector likely is .splHeader-dashboard h2
if you want to modify everything, if you want to modify one specific view you'll likely need body.splView-view_name .splHeader-dashboard h2
, and so on.