change link color and the background of the page in orion see image.
You'd have to modify the css files in the web directory (/inetserver/solarwinds/blahblahblah). It's not impossible to do, but every time you run a patch or update or if tech support has you re-run Configuration Wizard, you would need to re-apply those changes.
Let me know if you would like more detailed information.
I need to know which file to edit, it is necessary to exercise the css I know.
\inetpub\solarwinds\orion\styles is the directory
At that point it's a matter of WHICH of the links you want to change the color for. Likely it's in "MainLayout.css" but it could just as easily be in Resources.css.
You are looking for any of the styles that include an " a " option
ie: .ResourceWrapper table tbody tr td a img {....
Thanks for your hepl, I go tray again, and speak the resolution.
Sorry, but
You could show a clearer example. ?
Could you give a more specific question? What type of link are you trying to change, and what color do you want it to be? Include a picture so I can see what you are talking about.
You mean the banner of web console? in solarwinds v10.2, locate this folder C:\Inetpub\SolarWinds\Orion\styles\
open MainLayout.css, find script :
.sw-mainnav-branding { border: none; margin: 0; padding: 0; width: 100%;
background: #373737 url(../images/sample.png) ----this sample.png is the image that you want to put in your banner
0 0 repeat-x;
background-size: 2299px 170px; ----this is the customization size for your banner
}
And for changing the link color,
#userName .content
{
font-size: 8pt;
color: #CFECEC; ---edit/change this color code
#userName a
#userName a:hover --- ---edit/change this color code for hovering
color: #f99d1c;
I need to just change the color to white, which by default is black.
And with that I need to change the color of links menus (ADMIN (LOGOUT) Settings Help)
The version of the orion is 10.4.2
Thank you guys, but no resolution.
The version do orion is diferent.
This was what I was looking for : background: #373737 url(../images/sample.png) ----this sample.png is the image that you want to put in your banner
I was able to change the color and the logo. Saved the changed file as .old so that I can restore it whenever I do an upgrade.