I'm following the code from this previous question: R Shiny add picture to box in fluid row with text
Here is my code:
box(title = "Instructions",
status = "primary",
solidHeader = F,
collapsible = F,
width = 12,
fluidRow(column(width=10,textOutput("instructions")),
column(width=2, align="center",
img(src="no1.jpeg", width=100))))
server <- function(input, output) {
output$instructions <-renderText(print("test"))}
##Create and Run Shiny App Object---------------
shinyApp(ui, server)
runApp("~/shinyapp")
I think the location of my www
folder is wrong. I put it in the same folder as my .Rpoj. I'm using a Mac
/Users/myname/Desktop/ProjFolder/www:
I'm really not sure where else to put it, or how to get to the place where I need to put the www
folder.