When adding title, a ghost tab appears. How to remove ghost tab?
library(shiny)
library(shinythemes)
shinyUI(
# body
navbarPage(
title = "Title creates a ghost tab",
theme = shinytheme("cerulean"),
a(href = "http://literateaspects.com",
img(src = "alephTav_blue.png",
style = "height:70px;position:absolute;top:-8px;right:15px;z-index:1000000;background-size:10px'")#img end
),
windowTitle = tags$head(
tags$link(rel = "shortcut icon", href = "favicon.png"),
tags$title("Exodus 3:14 ... Seeking Those Seeking HIM")
),
#---------------> First
tabPanel("First",value = "page-nav-first"), # end first
#---------------> Second
tabPanel("Second",value = "page-nav-second"), # end second
#---------------> Third
tabPanel("Third",value = "page-nav-third"), # end third
#---------------> Fourth
tabPanel("Fourth",value = "page-nav-fourth"), # end fourth
#---------------> Fifth
tabPanel("Fifth",value = "page-nav-fifth"), # end fifth
#---------------> Sixth
tabPanel("Sixth", value="page-nav-sixth"), # end sixth
#---------------> Seventh
tabPanel("Seventh", value="page-nav-seventh") # end seventh
)
)