In the Agent or Admin Panel, when navigating between tabs, there is a orange loading bar that appears at the very top of the page.  Where is that located in the source code?  If possible, I'd like to change the color of it.Thanks, in advance.-------  My Info  -------osTicket Version: v1.9.7 (4be5782)Web Server Software: Apache/2.4.7 (Ubuntu)MySQL Version: 5.5.43PHP Version: 5.5.9-1ubuntu4.9

No idea.It's probably java or css based though.

   No idea.

It's probably java or css based though.  I'm not trying to be mean, but why would you leave a comment telling us you don't know??If anyone has a answer, it would be greatly appreciated.

I said:"No idea.It's probably java or css based though."Which narrows your search down by something about 96.12%.  I guess that you would prefer no answer at all to someone saying I don't know look here.  Okay I'm fine with that.  The next time I see you post something that I do not know the answer to I will ignore it rather then trying to help.Oh and search tells me that you want to look at: css/loadingbar.css

First... As I had previously mentioned, I was "not trying to be mean", but you clearly took it that way.Second... Nearly EVERY page of osTicket uses CSS or Javascript, so your answer in no way narrowed it down "".Third... If you look at any of my other posts , you will see that I am always appreciative of the help I receive.Fourth... Unless I specify otherwise, I ALWAYS search the forums first, before posting a new thread.Fifth... Thank you for pointing me to something that may be productive

Thank you, ntozier.Changing the hex color codes, of the following properties in the "css/loadingbar.css" file, did the trick.#loadingbar {   position: fixed;   z-index: 2147483647;   top: 0;   left: -6px;   width: 1%;   height: 2px;   background: #ff9100;   -moz-border-radius: 1px;   -webkit-border-radius: 1px;   border-radius: 1px;   -moz-transition: all 500ms ease-in-out;   -ms-transition: all 500ms ease-in-out;   -o-transition: all 500ms ease-in-out;   -webkit-transition: all 500ms ease-in-out;   transition: all 500ms ease-in-out; }  ...    #loadingbar dd, #loadingbar dt {   position: absolute;   top: 0;   height: 2px;                                                             -moz-box-shadow: #b91f1f 1px 0 6px 1px;   -ms-box-shadow: #b91f1f 1px 0 6px 1px;   -webkit-box-shadow: #B91F1F 1px 0 6px 1px;   box-shadow: #B91F1F 1px 0 6px 1px;   -moz-border-radius: 100%;   -webkit-border-radius: 100%;   border-radius: 100%; }

This conversation may be closed and marked resolved.  Thanks!

Re: SecondThere are something to the tune of 1033 files in the download archive (for your version). Approximately only 40 of those are css or js files. 40 of 1033 is about 3.88% (rounded up), so that would mean it is in fact a reduction of about 96.12% to the scope of your search. Re: FifthYou are very welcome. 

Re: Re: SecondThat exact number of CSS or JS files may, or may not, be true, but there are several PHP files I have come across with in-line/element styles.  So, you will also have to include those in your count.  Besides, since you said, " java or css based", that doesn't mean it java or css based, which expands my search.Either way, we now both know where the styling of the default Orange Loading Bar is located.  And thanks to , ntozier, my previous post/comment should now be able to help others, also...which is the real reason for community forums—to help each other.Have a day!

Write a Reply...