<?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: static text above the appHeaderWrapper in Security</title>
    <link>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13656#M317</link>
    <description>&lt;P&gt;i created my own dashboard.html   &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;   feels like a stupid question now.&lt;/P&gt;</description>
    <pubDate>Wed, 19 May 2010 20:48:00 GMT</pubDate>
    <dc:creator>hiddenkirby</dc:creator>
    <dc:date>2010-05-19T20:48:00Z</dc:date>
    <item>
      <title>static text above the appHeaderWrapper</title>
      <link>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13650#M311</link>
      <description>&lt;P&gt;IF one wanted to add static highlighted text to the top of every page in their app... how would they go about doing this?&lt;/P&gt;

&lt;P&gt;You can't add content with CSS... &lt;/P&gt;

&lt;P&gt;I would want some static text centered just above the appHeaderWrapper... across the app.&lt;/P&gt;

&lt;P&gt;thoughts?&lt;/P&gt;

&lt;P&gt;TIA,
   Kirby&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2010 00:57:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13650#M311</guid>
      <dc:creator>hiddenkirby</dc:creator>
      <dc:date>2010-05-18T00:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: static text above the appHeaderWrapper</title>
      <link>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13651#M312</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;.appHeaderWrapper:before {
    content: "My static text..";
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 May 2010 01:00:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13651#M312</guid>
      <dc:creator>hiddenkirby</dc:creator>
      <dc:date>2010-05-18T01:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: static text above the appHeaderWrapper</title>
      <link>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13652#M313</link>
      <description>&lt;P&gt;i'd like to add that this is an accessibility bad practice.  &lt;A href="http://stackoverflow.com/questions/2851410/persistant-header-of-text-css-in-a-div"&gt;http://stackoverflow.com/questions/2851410/persistant-header-of-text-css-in-a-div&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;If anyone knows of a better way .. please do tell.&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2010 01:10:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13652#M313</guid>
      <dc:creator>hiddenkirby</dc:creator>
      <dc:date>2010-05-18T01:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: static text above the appHeaderWrapper</title>
      <link>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13653#M314</link>
      <description>&lt;P&gt;it also seems to push down alignment.   doing a #TitleBar_0_0_0:before will put it below the app header but doesn't show on every page ...&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 09:12:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13653#M314</guid>
      <dc:creator>hiddenkirby</dc:creator>
      <dc:date>2020-09-28T09:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: static text above the appHeaderWrapper</title>
      <link>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13654#M315</link>
      <description>&lt;P&gt;I don't think the CSS thing is the way to go. Is there some template that i could put in my app that would add this globally?  something i could add a div to?&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2010 01:24:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13654#M315</guid>
      <dc:creator>hiddenkirby</dc:creator>
      <dc:date>2010-05-18T01:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: static text above the appHeaderWrapper</title>
      <link>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13655#M316</link>
      <description>&lt;P&gt;Aside from the CSS answer given,  the only way i know of is to convert your views to advanced XML,  put a ServerSideInclude module at the top of each advanced XML view (right under the view tag).&lt;/P&gt;

&lt;P&gt;
  global_message.html
&lt;/P&gt;

&lt;P&gt;and you put that file at
&lt;CODE&gt;$SPLUNK_HOME/etc/apps/&amp;lt;appname&amp;gt;/appserver/static/global_message.html&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;NOTE: the file extension is a little misleading but it doesnt have to be a full HTML document -  the file can just be an HTML fragment like:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;System Downtime Upcoming: 5/19/2010 @8pm-9pm&amp;lt;/b&amp;gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;It might pretty easy for us to add something like this in a future release though.&lt;BR /&gt;
Since we already have a global message queue on splunkd, and the UI already gets messages out of that stack, the hard parts are already done.  Would it be acceptable for you if you set this message via the CLI?   What kinds of things are you looking to put up there?   &lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2010 05:24:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13655#M316</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2010-05-18T05:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: static text above the appHeaderWrapper</title>
      <link>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13656#M317</link>
      <description>&lt;P&gt;i created my own dashboard.html   &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;   feels like a stupid question now.&lt;/P&gt;</description>
      <pubDate>Wed, 19 May 2010 20:48:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13656#M317</guid>
      <dc:creator>hiddenkirby</dc:creator>
      <dc:date>2010-05-19T20:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: static text above the appHeaderWrapper</title>
      <link>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13657#M318</link>
      <description>&lt;P&gt;That's another quick way to do it.  We generally dont recommend touching the actual template files because we'll blow them away when you upgrade.   (And of course we're trying to get to where apps can package their own template files and have things still work out sensibly. )&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2010 00:18:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/static-text-above-the-appHeaderWrapper/m-p/13657#M318</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2010-05-20T00:18:48Z</dc:date>
    </item>
  </channel>
</rss>

