0

I would like to write a small progress message to the bottom left corner of the browser window where browsers show links when hovering, or waiting for data etc. See image below for a better explanation.

enter image description here

i.e. I would like to write to the grey part in the attached picture which is currently showing the link 'opensource.org/licences/MIT'. It needs to be generic method, e.g. works in Chrome, FF, IE, but happy if its only in modern, HTML5 browsers.

Jon P Smith
  • 2,391
  • 1
  • 30
  • 55
  • Sorry. I did look but didn't know it was called the status bar. I tried to delete the question, but it wouldn't let me. Please delete if that helps. – Jon P Smith Jun 19 '14 at 09:15

1 Answers1

0

you can make div like this to show message and give css like this

.message {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 10px;
    font-size:14px;
    background: #CCC;
    color: #333;
}
Dhaval Panchal
  • 648
  • 6
  • 26