How to customize Share widget in WAB2.9

543
2
Jump to solution
08-28-2018 03:34 AM
Nicole_Ueberschär
Esri Regular Contributor

I thought it must be very simple but I don't seem to find the right place to look for it...

I am using the Share widget for one of my apps developed in WAB2.9. I want to keep the whole app as simple as possible and find the embed code within the sharing widget not useful in my circumstances and would like to remove the whole lower part (from Embed this app in a website). Can someone please point me to the right place to look for this part of of the widget?

I wonder a bit why this is not an option like enabling facebook, twitter, etc. 

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Nichole,

  In your apps themes folder inside the theme name folder you will find a common.css, add this css rule there:

.embedShare{
  display: none;
}‍‍‍‍‍‍‍‍

View solution in original post

2 Replies
RobertScheitlin__GISP
MVP Emeritus

Nichole,

  In your apps themes folder inside the theme name folder you will find a common.css, add this css rule there:

.embedShare{
  display: none;
}‍‍‍‍‍‍‍‍
Nicole_Ueberschär
Esri Regular Contributor

That did the job! Thanks Robert!

0 Kudos