<?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 change menu layout in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-menu-layout/m-p/430180#M28351</link>
    <description>&lt;P&gt;Hi Splunk doesn't provide any such options,&lt;/P&gt;

&lt;P&gt;If you just want the left nav bar in your dashboards means you can simple add this styles to your dashboard.css file inside /appserver/static of your application&lt;/P&gt;

&lt;P&gt;Note: Tried in splunk version 6.4.5. You may have to change the class names in CSS selectors for your versions&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;/*Selector for top nav bar */
.navbar-splunkbar.shared-splunkbar {
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 1;
}
/* Selector for App Nav bar */
.app-bar.shared-appbar {
    position: fixed;
    width: 200px;
    height: 100vh;
    top: 25px;
}
/* Selct for app logo inside nave bar */
h2.app-name.pull-right {
    position: fixed;
    bottom: 10px;
}
/* select individual item in nav */
.app-bar.shared-appbar li.nav-item.shared-appbar-navitem {
    width: 100% !important;
}

/* Main Section boy */
.main-section-body, .dashboard-body{
  margin-left: 200px !important;
  margin-top: 25px !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;dashboard.css will be loaded only to your dashboards..&lt;BR /&gt;
If you want to apply this style to all your splunk pages like search/dashboards/alerts/etc.. you have to create corresponding custom manager xml (search.xml, reports.xml, alerts.xml...etc) with custom templates &lt;/P&gt;</description>
    <pubDate>Fri, 21 Jun 2019 07:24:22 GMT</pubDate>
    <dc:creator>paramagurukarth</dc:creator>
    <dc:date>2019-06-21T07:24:22Z</dc:date>
    <item>
      <title>How to change menu layout</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-menu-layout/m-p/430178#M28349</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;

&lt;P&gt;By default (7.2), Splunk displays menu in the app bar.&lt;/P&gt;

&lt;P&gt;I wish I could configure this menu. I know many options are already available using XML but I want to go deeper. For example, I would like my menu to appear on a side vertical bar i/o a horizontal bar (as we are all used to). I wish the navigation flow could be different (like this one : &lt;A href="https://semantic-ui.com/modules/sidebar.html"&gt;https://semantic-ui.com/modules/sidebar.html&lt;/A&gt;)&lt;/P&gt;

&lt;P&gt;Even if applying some CSS may help, I am looking for a clean solution. I have been through the AppBar.js file provided by Splunk but it looks like it is not recommended to modify it (and there are no clean solution to do so)&lt;/P&gt;

&lt;P&gt;If I had any JS function with which I could retreive the list of navigation items, I could generate my own HTML with my own javascript behavior. The only reachable entry point is the REST API to get application navigation configuration but it is XML... &lt;CODE&gt;&lt;A href="http://&amp;lt;host&amp;gt;:&amp;lt;port&amp;gt;/servicesNS/&amp;lt;user&amp;gt;/&amp;lt;app&amp;gt;/data/ui/nav" target="test_blank"&gt;http://&amp;lt;host&amp;gt;:&amp;lt;port&amp;gt;/servicesNS/&amp;lt;user&amp;gt;/&amp;lt;app&amp;gt;/data/ui/nav&lt;/A&gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Can you help ?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 20:20:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-menu-layout/m-p/430178#M28349</guid>
      <dc:creator>ecoquelin</dc:creator>
      <dc:date>2019-01-28T20:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to change menu layout</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-menu-layout/m-p/430179#M28350</link>
      <description>&lt;P&gt;Hey, am having the same issue. Did you happen to do it?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2019 01:18:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-menu-layout/m-p/430179#M28350</guid>
      <dc:creator>niyaz006</dc:creator>
      <dc:date>2019-06-21T01:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to change menu layout</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-menu-layout/m-p/430180#M28351</link>
      <description>&lt;P&gt;Hi Splunk doesn't provide any such options,&lt;/P&gt;

&lt;P&gt;If you just want the left nav bar in your dashboards means you can simple add this styles to your dashboard.css file inside /appserver/static of your application&lt;/P&gt;

&lt;P&gt;Note: Tried in splunk version 6.4.5. You may have to change the class names in CSS selectors for your versions&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;/*Selector for top nav bar */
.navbar-splunkbar.shared-splunkbar {
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 1;
}
/* Selector for App Nav bar */
.app-bar.shared-appbar {
    position: fixed;
    width: 200px;
    height: 100vh;
    top: 25px;
}
/* Selct for app logo inside nave bar */
h2.app-name.pull-right {
    position: fixed;
    bottom: 10px;
}
/* select individual item in nav */
.app-bar.shared-appbar li.nav-item.shared-appbar-navitem {
    width: 100% !important;
}

/* Main Section boy */
.main-section-body, .dashboard-body{
  margin-left: 200px !important;
  margin-top: 25px !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;dashboard.css will be loaded only to your dashboards..&lt;BR /&gt;
If you want to apply this style to all your splunk pages like search/dashboards/alerts/etc.. you have to create corresponding custom manager xml (search.xml, reports.xml, alerts.xml...etc) with custom templates &lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2019 07:24:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-menu-layout/m-p/430180#M28351</guid>
      <dc:creator>paramagurukarth</dc:creator>
      <dc:date>2019-06-21T07:24:22Z</dc:date>
    </item>
  </channel>
</rss>

