NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: olu on October 09, 2013, 12:18:22 AM

Title: Adjust size of progress bar
Post by: olu 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?
Title: Re: Adjust size of progress bar
Post by: Bruce 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
Title: Re: Adjust size of progress bar
Post by: olu on October 10, 2013, 02:19:42 AM
Thanks Bruce that worked.