<?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: Replace ESRI logo with custom logo? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432121#M39807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi odoe,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm still a beginner at JavaScript. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you explain what you mean by "I append a div to the "map_root" element"?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jun 2014 16:59:26 GMT</pubDate>
    <dc:creator>LisCollins</dc:creator>
    <dc:date>2014-06-20T16:59:26Z</dc:date>
    <item>
      <title>Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432100#M39786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've found how to insert a custom logo into the header of a web application, but how can one replace the "Powered by ESRI" logo?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2011 17:37:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432100#M39786</guid>
      <dc:creator>BarryGuidry</dc:creator>
      <dc:date>2011-10-17T17:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432101#M39787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Set the logo to false in the parameter options of the map constructor.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Example: &lt;/SPAN&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;var map = new esri.Map("map",{logo:false});&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then position your logo where you want in the map container.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2011 17:54:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432101#M39787</guid>
      <dc:creator>JoeJeurissen</dc:creator>
      <dc:date>2011-10-17T17:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432102#M39788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are trying to replace just the image it can be accomplished by the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;script type="text/javascript"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Change the background image
&amp;nbsp;&amp;nbsp;&amp;nbsp; document.getElementsByClassName('logo-med')[0].style.backgroundImage="url(\"http://www.yoururl.com/to/the/image.gif\")";
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Keep the image from repeating
&amp;nbsp;&amp;nbsp;&amp;nbsp; document.getElementsByClassName('logo-med')[0].style.backgroundRepeat="no-repeat";
&amp;lt;/script&amp;gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:25:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432102#M39788</guid>
      <dc:creator>BaileyLipscomb1</dc:creator>
      <dc:date>2021-12-11T19:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432103#M39789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;If you are trying to replace just the image it can be accomplished by the following code:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;script type="text/javascript"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Change the background image
&amp;nbsp;&amp;nbsp;&amp;nbsp; document.getElementsByClassName('logo-med')[0].style.backgroundImage="url(\"http://www.yoururl.com/to/the/image.gif\")";
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Keep the image from repeating
&amp;nbsp;&amp;nbsp;&amp;nbsp; document.getElementsByClassName('logo-med')[0].style.backgroundRepeat="no-repeat";
&amp;lt;/script&amp;gt;
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When the user clicks the logo it links to esri.com.&amp;nbsp; How do you disable that, or better yet change the url?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:25:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432103#M39789</guid>
      <dc:creator>martinschmoll</dc:creator>
      <dc:date>2021-12-11T19:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432104#M39790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;If you are trying to replace just the image it can be accomplished by the following code:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;script type="text/javascript"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Change the background image
&amp;nbsp;&amp;nbsp;&amp;nbsp; document.getElementsByClassName('logo-med')[0].style.backgroundImage="url(\"http://www.yoururl.com/to/the/image.gif\")";
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Keep the image from repeating
&amp;nbsp;&amp;nbsp;&amp;nbsp; document.getElementsByClassName('logo-med')[0].style.backgroundRepeat="no-repeat";
&amp;lt;/script&amp;gt;
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; Thanks, Bailey.&amp;nbsp; I cannot figure out where to insert it in the HTML file, though.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:25:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432104#M39790</guid>
      <dc:creator>BarryGuidry</dc:creator>
      <dc:date>2021-12-11T19:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432105#M39791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks, Bailey.&amp;nbsp; I cannot figure out where to insert it in the HTML file, though.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Drop it in the header below all of the ArcGIS javascript functions. Let me know if that works.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2011 19:54:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432105#M39791</guid>
      <dc:creator>BaileyLipscomb1</dc:creator>
      <dc:date>2011-10-19T19:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432106#M39792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;When the user clicks the logo it links to esri.com.&amp;nbsp; How do you disable that, or better yet change the url?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I found it in old API documentation...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;esri.config.defaults.map.logoLink = "http://yoursite.com"&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2011 12:27:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432106#M39792</guid>
      <dc:creator>martinschmoll</dc:creator>
      <dc:date>2011-10-20T12:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432107#M39793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Martin, that is also on &lt;/SPAN&gt;&lt;A href="http://gis.utah.gov/other-scripts-and-processes/javascript-esri-js-api-v2-0"&gt;Utah's GIS Portal&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; That is only a portion of what needs to be completed, though, which only adds a custom hyperlink to the logo. I attempted what Utah's site recommends, but it only deleted ESRIs logo, but did not add mine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2011 13:25:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432107#M39793</guid>
      <dc:creator>BarryGuidry</dc:creator>
      <dc:date>2011-10-20T13:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432108#M39794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Martin, that is also on &lt;A href="http://gis.utah.gov/other-scripts-and-processes/javascript-esri-js-api-v2-0"&gt;Utah's GIS Portal&lt;/A&gt;.&amp;nbsp; That is only a portion of what needs to be completed, though, which only adds a custom hyperlink to the logo. I attempted what Utah's site recommends, but it only deleted ESRIs logo, but did not add mine.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've got both the replacement logo and url working.&amp;nbsp; Make sure you post the (3 lines of) code in your init() function after the map object is created.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2011 16:09:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432108#M39794</guid>
      <dc:creator>martinschmoll</dc:creator>
      <dc:date>2011-10-20T16:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432109#M39795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I've got both the replacement logo and url working.&amp;nbsp; Make sure you post the (3 lines of) code in your init() function after the map object is created.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Three lines of code? Not sure which code you are using (perhaps a combination of what Bailey and yourself posted)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there an additional "dojo.require" statement that may be necessary?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2011 17:58:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432109#M39795</guid>
      <dc:creator>BarryGuidry</dc:creator>
      <dc:date>2011-10-20T17:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432110#M39796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Three lines of code? Not sure which code you are using (perhaps a combination of what Bailey and yourself posted)?&lt;BR /&gt;&lt;BR /&gt;Is there an additional "dojo.require" statement that may be necessary?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;A simple combination of hide ESRI logo and add an image link with css will achieve your goal. Something like this &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;style type="text/css"&amp;gt;
div.map img
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
 position:absolute;
 bottom:20px;
 right:20px;
 z-index:100; 
 width:15px; 
 heigth:15px;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } 
&amp;lt;/style&amp;gt; 
 &amp;lt;script type="text/javascript"&amp;gt;
function init()
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; map = new esri.Map("map", { 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; extent: initialExtent, logo: false 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }); 
}
...
&amp;lt;/script&amp;gt; 
&amp;lt;body class="claro"&amp;gt;
...
&amp;lt;div id="map" class="roundedCorners" dojotype="dijit.layout.ContentPane" region="center"&amp;gt;
 &amp;lt;a href="http://www.google.com"&amp;gt;&amp;lt;img src="logo.png" alt="View Logo" /&amp;gt;&amp;lt;/a&amp;gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt; 
...
&amp;lt;/body&amp;gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:25:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432110#M39796</guid>
      <dc:creator>HemingZhu</dc:creator>
      <dc:date>2021-12-11T19:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432111#M39797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Three lines of code? Not sure which code you are using (perhaps a combination of what Bailey and yourself posted)?&lt;BR /&gt;&lt;BR /&gt;Is there an additional "dojo.require" statement that may be necessary?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, a combo of code.&amp;nbsp; This is what is working for me:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;esri.config.defaults.map.logoLink = "http://yoursite.com"&amp;nbsp;&amp;nbsp;&amp;nbsp; 
document.getElementsByClassName('logo-med')[0].style.backgroundImage="url(\"http://www.yoururl.com/to/the/image.gif\")";
document.getElementsByClassName('logo-med')[0].style.backgroundRepeat="no-repeat";&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:25:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432111#M39797</guid>
      <dc:creator>martinschmoll</dc:creator>
      <dc:date>2021-12-11T19:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432112#M39798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was able to get the example Heming provided to work, except it now affects the format of my "BaseMapGallery" widget because the logo is in the same section (below).&lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;style type="text/css"&amp;gt;
div.map img
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
 position:absolute;
 bottom:20px;
 right:20px;
 z-index:100; 
 width:15px; 
 heigth:15px;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } 
&amp;lt;body class="nihilo"&amp;gt;
&amp;lt;/style&amp;gt; 
&amp;lt;div id="map" dojotype="dijit.layout.ContentPane" region="center" style="border:1px solid #000;padding:0;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href="http://www.google.com"&amp;gt;&amp;lt;img src="logo.png" alt="View Logo" /&amp;gt;&amp;lt;/a&amp;gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div style="position:absolute; right:20px; top:10px; z-Index:999;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div dojoType="dijit.TitlePane" title="Switch Basemap" closable="false"&amp;nbsp; open="false"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div dojoType="dijit.layout.ContentPane" style="width:380px; height:280px; overflow:auto;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="basemapGallery" &amp;gt;&amp;lt;/div&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:25:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432112#M39798</guid>
      <dc:creator>BarryGuidry</dc:creator>
      <dc:date>2021-12-11T19:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432113#M39799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I was able to get the example Heming provided to work, except it now affects the format of my "BaseMapGallery" widget because the logo is in the same section (below).&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;style type="text/css"&amp;gt;
div.map img
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
 position:absolute;
 bottom:20px;
 right:20px;
 z-index:100; 
 width:15px; 
 heigth:15px;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } 
&amp;lt;body class="nihilo"&amp;gt;
&amp;lt;/style&amp;gt; 
&amp;lt;div id="map" dojotype="dijit.layout.ContentPane" region="center" style="border:1px solid #000;padding:0;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href="http://www.google.com"&amp;gt;&amp;lt;img src="logo.png" alt="View Logo" /&amp;gt;&amp;lt;/a&amp;gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div style="position:absolute; right:20px; top:10px; z-Index:999;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div dojoType="dijit.TitlePane" title="Switch Basemap" closable="false"&amp;nbsp; open="false"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div dojoType="dijit.layout.ContentPane" style="width:380px; height:280px; overflow:auto;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="basemapGallery" &amp;gt;&amp;lt;/div&amp;gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Barry, what is the issue?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:25:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432113#M39799</guid>
      <dc:creator>HemingZhu</dc:creator>
      <dc:date>2021-12-11T19:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432114#M39800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;See post# 13.&amp;nbsp; I don't know how else to explain it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2011 13:34:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432114#M39800</guid>
      <dc:creator>BarryGuidry</dc:creator>
      <dc:date>2011-11-09T13:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432115#M39801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;See post# 13.&amp;nbsp; I don't know how else to explain it.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It's matter of consistence issue. Pull out the style in basemap div, and put it together with your custome logo:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
div.map #baseMap
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { position:absolute; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; right:20px; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; top:10px; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; z-Index:999;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } 
div.map #logo
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
 position:absolute;
 bottom:20px;
 right:20px;
 z-index:100; 
 width:15px; 
 heigth:15px;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }

Note: #baseMap and #logo are ids of your basemap and your logo image. 

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:25:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432115#M39801</guid>
      <dc:creator>HemingZhu</dc:creator>
      <dc:date>2021-12-11T19:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432116#M39802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK, thanks Heming.&amp;nbsp; I didn't have div.map #logo entry in the css stylesheet section.&amp;nbsp; That works now.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2011 17:16:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432116#M39802</guid>
      <dc:creator>BarryGuidry</dc:creator>
      <dc:date>2011-11-09T17:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432117#M39803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;init.js &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;find and replase "/images/map/logo-med.png')" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;also find and replase logoLink:"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.esri.com" rel="nofollow" target="_blank"&gt;http://www.esri.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Dec 2013 03:39:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432117#M39803</guid>
      <dc:creator>VadimKozyrenko</dc:creator>
      <dc:date>2013-12-27T03:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432118#M39804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;you should read license agreements here: &lt;/SPAN&gt;&lt;A href="http://www.esri.com/legal/pdfs/mla_e204_e300/english.pdf"&gt;http://www.esri.com/legal/pdfs/mla_e204_e300/english.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4.2 (g) Licensee shall not remove or obscure any Esri or its licensors' patent, copyright, trademark, or proprietary rights notices contained in or affixed to Software, Data, Web Services, or Documentation.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Feb 2014 23:36:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432118#M39804</guid>
      <dc:creator>ErwinSoekianto</dc:creator>
      <dc:date>2014-02-03T23:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Replace ESRI logo with custom logo?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432119#M39805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Has anyone tried this recently? I was able to remove the ESRI logo using logo:false. But when I tried to add in my custom logo manually using CSS and a logo div in the body html using the parameters above, the logo sits in the top right of my page. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The logo never moves from this position no matter what numbers I have in the bottom, right, or z-value. Any suggestions? I want it in the lower right of the map where the ESRI logo used to be.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2014 16:47:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/replace-esri-logo-with-custom-logo/m-p/432119#M39805</guid>
      <dc:creator>LisCollins</dc:creator>
      <dc:date>2014-06-20T16:47:00Z</dc:date>
    </item>
  </channel>
</rss>

