@Jhanzkie The world is your oyster with inline CSS See this - single row - single panel <dashboard>
<label>Example</label>
<row>
<panel depends="$CSS$">
<html>
<style>
#single_value h2.panel-title {
text-align: center !important;
font-size: 24px !important;
border: double !important;
color: #ff0000 !important;
}
</style>
</html>
</panel>
<panel id="single_value">
<title>Here is a nice panel title in red</title>
<single>
<search>
<query>
| makeresults
| eval value = random() % 10000
</query>
<earliest>-24h</earliest>
<latest>now</latest>
<sampleRatio>1</sampleRatio>
</search>
<option name="drilldown">none</option>
</single>
<single>
<search>
<query>
| makeresults
| eval value = random() % 10000
</query>
<earliest>-24h</earliest>
<latest>now</latest>
<sampleRatio>1</sampleRatio>
</search>
<option name="drilldown">none</option>
</single>
</panel>
</row>
</dashboard>
... View more