Hello,
I have a silly question, but I was asked to find out, how can we remove the guy with the headsets in the We're Here To Help on the front page of Nagios XI. I was asked to change his picture to reflect our support team.
Thank you,
Shane Metzler
Remove Customer Support Guy with Headsets
Re: Remove Customer Support Guy with Headsets
Since I am the guy whom you are trying to remove, let me answer... 
There are two files in the "/usr/local/nagiosxi/html/images" directory - techsupport-splash.png and techsupport-splash2.png. You can drop your custom image in that directory and replace both files with it.
Make sure the resolution of your image is about the same as the one of the "original" images, and the files are owned by nagios with 644 permissions.
Keep in mind that your custom image would be overwritten on every upgrade of Nagos XI, so you would need to repeat the process.
Hope this helps.
There are two files in the "/usr/local/nagiosxi/html/images" directory - techsupport-splash.png and techsupport-splash2.png. You can drop your custom image in that directory and replace both files with it.
Code: Select all
cd /usr/local/nagiosxi/html/images
cp your-custom-image.png techsupport-splash.png
cp your-custom-image.png techsupport-splash2.pngKeep in mind that your custom image would be overwritten on every upgrade of Nagos XI, so you would need to repeat the process.
Hope this helps.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: Remove Customer Support Guy with Headsets
Thank you so much for the update!
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Remove Customer Support Guy with Headsets
May we lock this thread?smetzler wrote:Thank you so much for the update!
Re: Remove Customer Support Guy with Headsets
Alternatively, you can go to Admin > Custom Includes > Images tab and upload your pics you want.
Then create a replaceludmil.css file in a new file on your workstation:
- Change the YOURIMAGE.png to the actuall name of your pic you uploaded
Then upload it in Admin > Custom Includes > CSS, check the box next to it, and click the Save Change button.
This should survive upgrades.
Then create a replaceludmil.css file in a new file on your workstation:
- Change the YOURIMAGE.png to the actuall name of your pic you uploaded
Code: Select all
.ts-splash { background: url('/nagiosxi/includes/components/custom-includes/images/YOURIMAGE.png') no-repeat; }
.ts-splash:hover { background: url('/nagiosxi/includes/components/custom-includes/images/YOURIMAGE2.png') no-repeat; }This should survive upgrades.
Re: Remove Customer Support Guy with Headsets
Thank you everyone for the help! I was able to change the picture with the first suggestion. Unfortunately the css script did not work but I have not had time to play with it yet.
Shane Metzler, MSCy, GCFE
Shane Metzler, MSCy, GCFE
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Remove Customer Support Guy with Headsets
Great!smetzler wrote:Thank you everyone for the help! I was able to change the picture with the first suggestion.
Locking thread