Hi,
I have a tabPanel that I want to have in the far right of the navBar such that it always stays to outmost right point of the browser.  I have added a minimal working example with my code!
Any help is appreciated. I have no knowledge of CSS, Java and HTML coding what so ever!
My best wishes,
Serkan
library(shiny)
ui <- navbarPage(
    title = "Title",
     tabPanel(
        title = "Pin me to the FAR FAR right please!",
        column(
            h1("Upload"),
            width = 12,
            fileInput(
                inputId = "Update",
                label = NULL,
                multiple = TRUE,
                accept = ".csv",
                placeholder = "Drag and Drop",
                width = "100%"
            )
        ),
        icon = icon("cloud-upload-alt", lib = "font-awesome")
        
    ),
    
    tabPanel(
        title = "Upload Filer",
        column(
            h1("Upload"),
            width = 12,
            fileInput(
                inputId = "Update",
                label = NULL,
                multiple = TRUE,
                accept = ".csv",
                placeholder = "Drag and Drop",
                width = "100%"
            )
        ),
        icon = icon("cloud-upload-alt", lib = "font-awesome")
        
    )
)
server <- function(input, output, session) {
}
runApp(list(ui = ui, server = server))