NetTalk Central

Author Topic: Adjust size of progress bar  (Read 2798 times)

olu

  • Sr. Member
  • ****
  • Posts: 352
    • View Profile
    • Email
Adjust size of progress bar
« on: October 09, 2013, 12:18:22 AM »
Please do anyone know how to increase the width and reduce the height of the progress bar?

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11250
    • View Profile
Re: Adjust size of progress bar
« Reply #1 on: October 09, 2013, 06:34:31 AM »
in your custom.css

.nt-progress {
    height: 5px;
    min-height: 15px;
    min-width: 100px;
    width: 200px;
}


that's for all progress bars. Obviously you can create additional unique ones as well.

Cheers
Bruce

olu

  • Sr. Member
  • ****
  • Posts: 352
    • View Profile
    • Email
Re: Adjust size of progress bar
« Reply #2 on: October 10, 2013, 02:19:42 AM »
Thanks Bruce that worked.