<?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: Help with Customizing Power BI Theme - Navigation Bar Shadow Properties Not Applying in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-Customizing-Power-BI-Theme-Navigation-Bar-Shadow/m-p/4777878#M62369</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1297636"&gt;@Mesalomee&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm glad to hear that you found a solution and resolved the query. Thank you for sharing it here!&lt;/P&gt;
&lt;P&gt;Please mark your response as the accepted solution to help others in the community find it easily.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for being a part of the Microsoft Community Forum!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jul 2025 05:25:34 GMT</pubDate>
    <dc:creator>v-sgandrathi</dc:creator>
    <dc:date>2025-07-28T05:25:34Z</dc:date>
    <item>
      <title>Help with Customizing Power BI Theme - Navigation Bar Shadow Properties Not Applying</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-Customizing-Power-BI-Theme-Navigation-Bar-Shadow/m-p/4776770#M62350</link>
      <description>&lt;P&gt;Hi everyone,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I'm customising a Power BI theme directly in the JSON file for more flexibility, but I'm struggling to apply &lt;STRONG&gt;shadow&lt;/STRONG&gt; properties (set in Power BI Desktop via Format Pane &amp;gt; Style &amp;gt; Shadow) to my navigation bar visual. The navigation already looks good with my current customisations, but I want to enhance it with these specific shadow settings:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Color:&lt;/STRONG&gt; #FCFCFC&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Transparency:&lt;/STRONG&gt; 50%&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Blur:&lt;/STRONG&gt; 9px&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Position:&lt;/STRONG&gt; Custom&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Angle:&lt;/STRONG&gt; 90 degrees&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Distance:&lt;/STRONG&gt; 12px&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Here's the JSON code I'm using for the shadow:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;      "shadow":
      [
        {
          "show": true,
          "shadowColor": {
            "solid": {
              "color": "#FCFCFC"
            }
          },
          "transparency": 50,
          "shadowBlur": 9,
          "shadowPositionPreset": "custom",
          "angle": 90,
          "shadowDistance": 12
        }
      ]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue is that only&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"show": true &lt;/LI-CODE&gt;&lt;P&gt;The issue is that only "show": true works, enabling the shadow. However, none of the other properties (color, transparency, blur, etc.) apply, and the default shadow appears instead (black, 70% transparency, 20px blur, bottom-right position). If I set "show": false or remove the "shadow" section entirely, the shadow disappears, confirming the "show" property is recognised in the "shadow".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried replacing "shadowColor" with "color", "fillColor", and "lineColor", but none worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For reference, my &lt;STRONG&gt;fill&lt;/STRONG&gt; properties for default, hover, and selected states work perfectly with this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;      "fill": [
        {
          "$id": "default",
          "show": true,
          "fillColor": {
            "solid": {
              "color": "#A1C6B5"
            }
          }
        },
        {
          "$id": "hover",
          "show": true,
          "fillColor": {
            "solid": {
              "color": "#F3F2F1"
            }
          }
        },
        {
          "$id": "selected",
          "show": true,
          "fillColor": {
            "solid": {
              "color": "#F2F4F3"
            }
          }
        }
      ]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried adding an $id property to the shadow section to match the fill structure, but it didn't help.&lt;/P&gt;&lt;P&gt;Does anyone have suggestions for getting the shadow properties to apply correctly?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Any help and advice would be greatly appreciated - this is driving me crazy! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;P.S. If anyone is interested in theme customisation, you can find great resources here:&amp;nbsp;&lt;A href="https://github.com/MattRudy/PowerBI-ThemeTemplates" target="_blank" rel="noopener"&gt;https://github.com/MattRudy/PowerBI-ThemeTemplates&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 18:26:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-Customizing-Power-BI-Theme-Navigation-Bar-Shadow/m-p/4776770#M62350</guid>
      <dc:creator>Mesalomee</dc:creator>
      <dc:date>2025-07-25T18:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Customizing Power BI Theme - Navigation Bar Shadow Properties Not Applying</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-Customizing-Power-BI-Theme-Navigation-Bar-Shadow/m-p/4777029#M62353</link>
      <description>&lt;P&gt;I found the code that works, just had to pass properties as a separate object from "show": true&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;      "shadow":
      [
        {
          "show": true},
          {
            "$id": "default",
          "color": {
            "solid": {
              "color": "#FCFCFC"
          }},
          "transparency": 50,
          "shadowBlur": 9,
          "shadowPositionPreset": "custom",
          "angle": 90,
          "shadowDistance": 12
        }
      ]&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 26 Jul 2025 09:51:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-Customizing-Power-BI-Theme-Navigation-Bar-Shadow/m-p/4777029#M62353</guid>
      <dc:creator>Mesalomee</dc:creator>
      <dc:date>2025-07-26T09:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Customizing Power BI Theme - Navigation Bar Shadow Properties Not Applying</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-Customizing-Power-BI-Theme-Navigation-Bar-Shadow/m-p/4777878#M62369</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1297636"&gt;@Mesalomee&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm glad to hear that you found a solution and resolved the query. Thank you for sharing it here!&lt;/P&gt;
&lt;P&gt;Please mark your response as the accepted solution to help others in the community find it easily.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for being a part of the Microsoft Community Forum!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 05:25:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-Customizing-Power-BI-Theme-Navigation-Bar-Shadow/m-p/4777878#M62369</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-07-28T05:25:34Z</dc:date>
    </item>
  </channel>
</rss>

