3

The parameters for the titlePanel function gets displayed as HTML title in R Shiny app. How to avoid this?

titlePanel issue-1

titlePanel issue-2

Mandeep Thakur
  • 625
  • 1
  • 10
  • 23
RanonKahn
  • 784
  • 8
  • 29

3 Answers3

1

Here's a link to a similar solution. I presume that you're trying to add a favicon to your Shiny app?

https://stackoverflow.com/a/30096376/7165765

Community
  • 1
  • 1
1

You can avoid it by defining a title

fluidPage(
   title = "TITLE",
   titlePanel(...
cuttlefish44
  • 6,299
  • 1
  • 15
  • 32
1

If I understood correctly, you want to put a PNG image in your title Panel. Then you must create a folder called "www" in your shinyapp directory. Moves your png image to this folder. Write this code instead of your titlePanel code:

titlePanel(HTML('<img src="Title.png"/ height="90" width="830" > '))
Mario M.
  • 712
  • 7
  • 22