The parameters for the titlePanel function gets displayed as HTML title in R Shiny app. How to avoid this?
Asked
Active
Viewed 191 times
3 Answers
1
Here's a link to a similar solution. I presume that you're trying to add a favicon to your Shiny app?
Community
- 1
- 1
persimmon_jones
- 21
- 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