<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to reference various elements in Splunk Dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-reference-various-elements-in-Splunk-Dashboard/m-p/515531#M34477</link>
    <description>Perhaps this blog posting by a Splunker will help.&lt;BR /&gt;&lt;A href="https://www.splunk.com/en_us/blog/tips-and-tricks/splunk-clara-fication-customizing-simplexml-dashboards-with-inline-css.html" target="_blank"&gt;https://www.splunk.com/en_us/blog/tips-and-tricks/splunk-clara-fication-customizing-simplexml-dashboards-with-inline-css.html&lt;/A&gt;</description>
    <pubDate>Fri, 21 Aug 2020 18:59:21 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2020-08-21T18:59:21Z</dc:date>
    <item>
      <title>How to reference various elements in Splunk Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-reference-various-elements-in-Splunk-Dashboard/m-p/515529#M34476</link>
      <description>&lt;P&gt;Hi fellow Splunkers!&lt;/P&gt;&lt;P&gt;I'm trying to figure out how to customize the subtitle of a dashboard (bold the font or change the font size for example). I'm currently using a hidden HTML style panel within my XML so if possible I'd like to continue with that method rather than converting the whole dashboard to HTML.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Quick Stats&amp;lt;/title&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;title&amp;gt;User Counts&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
......
        &amp;lt;/search&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
&amp;lt;/row&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The "User Counts" title is the one I am interested in adding specific styles to.&lt;/P&gt;&lt;P&gt;Here is an example of how I am currently customizing some of the elements of my dashboard:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...
&amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;**&amp;lt;html depends="$hiddenForCSS$"&amp;gt;**
           &amp;lt;style&amp;gt;
             .dashboard-row {
             padding-bottom: 5px !important;
             padding-top: 5px !important;
             }
            .dashboard-panel h2{
             background:#65A637 !important;
             color:white !important;
             text-align: center !important;
             font-weight: bold !important;
             border-top-right-radius: 15px !important;
             border-top-left-radius: 15px !important;
            }
           &amp;lt;/style&amp;gt;
          &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
...&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm mainly trying to identify the correct way to reference the subtitle but if anyone has any general tips for the best way to identify the correct way to reference the various dashboard elements, that would be super helpful as well.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 18:35:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-reference-various-elements-in-Splunk-Dashboard/m-p/515529#M34476</guid>
      <dc:creator>kaeleyt</dc:creator>
      <dc:date>2020-08-21T18:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to reference various elements in Splunk Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-reference-various-elements-in-Splunk-Dashboard/m-p/515531#M34477</link>
      <description>Perhaps this blog posting by a Splunker will help.&lt;BR /&gt;&lt;A href="https://www.splunk.com/en_us/blog/tips-and-tricks/splunk-clara-fication-customizing-simplexml-dashboards-with-inline-css.html" target="_blank"&gt;https://www.splunk.com/en_us/blog/tips-and-tricks/splunk-clara-fication-customizing-simplexml-dashboards-with-inline-css.html&lt;/A&gt;</description>
      <pubDate>Fri, 21 Aug 2020 18:59:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-reference-various-elements-in-Splunk-Dashboard/m-p/515531#M34477</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-08-21T18:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to reference various elements in Splunk Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-reference-various-elements-in-Splunk-Dashboard/m-p/515539#M34478</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;That was very helpful. I was able to find the element by going in to the developer tools, narrowing down to just one of the panels and then once I got down to the subtitle I clicked on it and it actually ends up displaying the exact syntax I can just copy and paste into the XML to override.&lt;/P&gt;&lt;P&gt;Example answer for anyone who needs this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;.dashboard-row .dashboard-panel .panel-head h3{
            font-size: 20px !important;
            }&lt;/LI-CODE&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 19:24:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-reference-various-elements-in-Splunk-Dashboard/m-p/515539#M34478</guid>
      <dc:creator>kaeleyt</dc:creator>
      <dc:date>2020-08-21T19:24:20Z</dc:date>
    </item>
  </channel>
</rss>

