【发布时间】:2014-10-04 03:45:34
【问题描述】:
在我的应用程序中,我使用导航栏。我尝试了来自 Bootswatch.com 的所有免费 CSS Bootstrap 样式表(甚至修改了它们),但我总是这样:
标题是“Instagram 分析器”。第一个菜单项在同一行中,第二个在该行下方移动一行。谁能弄清楚 CSS 代码的哪一部分产生了那个“错误”?
在这张照片中,我使用了“Amelia”风格。
这里是 ui.R 代码:
shinyUI(navbarPage("Instagram Analyzer",
tabPanel("One User at a Glance",
fluidRow( column(width = 12,h1("Instagram Analyzer"))
),
fluidRow( column(width = 4,selectInput("user",label="Instagram User",choices=data)),
column(width = 8,tableOutput("basics"),tableOutput("z"))
),
fluidRow( column(width = 12,plotOutput("plot"))
)
),
tabPanel("Manage Database"),theme="instagram.css"
))
在这里您可以找到样式表: http://bootswatch.com/amelia/
【问题讨论】:
标签: css r twitter-bootstrap shiny