Where do I change the portal name to add company branding?
Best Answers
-
Jonathan_Boles Customer Ninja IT Monkey ✭✭✭✭Hi Alan, to change the portal name, simply go to the Admin settings by clicking on the name in the top right hand corner of the portal (view-able to Admins only) and then click 'Settings Items' on the right have list.
From there, find the ApplicationTitle key and change the value in the right-hand column to the desired name. This will change the title from the Cireson Support Portal as shown in your screenshot.
5 -
Gerhard_Goossens Customer Advanced IT Monkey ✭✭✭What I did to add my company logo was to add the following to the custom.css.headerContent h4:before {display: inline-block;width: 144px;height: 37px;vertical-align: middle;margin-right: 15px;margin-bottom: 3px;content: "";background: url("/CustomSpace/NWU-acronym-logo-white.png") no-repeat 0 0;background-size:100%;}
And the end result looks like this:
The code is just sooo much cleaner than all those base64 clutter.
I guess there is a reason for the base64 way but for me the background: property works just fine.6
Answers
From there, find the ApplicationTitle key and change the value in the right-hand column to the desired name. This will change the title from the Cireson Support Portal as shown in your screenshot.
Option 1 - During the install you were prompted for the Portal name, so next time you rerun the installer, you can change it.
Option 2 - Portal Settings - In the Admin Settings > Setting Items you can change the name of the Portal. Look for ApplicationTitle
Logo
Option 1 - The easiest way it to copy and paste the code from one of the CustomSpaceExamples like custom.thundercats.css. This way you can see where it is and about how large the placeholder is.
Option 2 - Past the following into your custom.css file and replace "***base64codehere***" with your image that has been converted to base 64.
And the end result looks like this:
The code is just sooo much cleaner than all those base64 clutter.
I guess there is a reason for the base64 way but for me the background: property works just fine.
Also, how did you get the Notification Icon (Count) in the portal?