Changing the Logo on Cireson portal
Best Answers
-
Brian_Wiest Customer Super IT Monkey ✭✭✭✭✭https://support.cireson.com/KnowledgeBase/View/43#/
Adding a Custom Logo to the Login Screen
You can add a custom logo to the login screen by replacing the file at the location below with a custom file.
V1 and V2: C:\inetpub\CiresonPortal\Images\login.png
V3+: C:\inetpub\CiresonPortal\CustomSpace\login.png
And for the portal
Customspace.css
.headerContent {
background-image: url(/CustomSpace/image.png);
background-repeat: no-repeat;
background-size: 31px 32px;
padding-left: 35px;
/* V3 Change */
background-position: 0px 6px /* V3 Change */;
}
6 -
Adam_Dzyacky Product Owner Contributor Monkey ✭✭✭✭✭I believe all this should take is heading into the CustomSpace directory and replacing "login.png" with your own custom file (assuming this is the logo you're referring to).
Of course there is also the "favicon.ico" if you want to update the website's icon file on the parent directoy of CiresonPortal
Finally, with the custom.css file within custom space I believe the "headerContent" tag needs to be updated with the Base64 image. You can see examples of this in CustomSpaceExamples and looking at the helloKitty, itMonkey, and thundercats examples.5
Answers
Adding a Custom Logo to the Login Screen
You can add a custom logo to the login screen by replacing the file at the location below with a custom file.
V1 and V2: C:\inetpub\CiresonPortal\Images\login.png
V3+: C:\inetpub\CiresonPortal\CustomSpace\login.png
And for the portal
Customspace.css
.headerContent {
background-image: url(/CustomSpace/image.png);
background-repeat: no-repeat;
background-size: 31px 32px;
padding-left: 35px;
/* V3 Change */
background-position: 0px 6px /* V3 Change */;
}
Of course there is also the "favicon.ico" if you want to update the website's icon file on the parent directoy of CiresonPortal
Finally, with the custom.css file within custom space I believe the "headerContent" tag needs to be updated with the Base64 image. You can see examples of this in CustomSpaceExamples and looking at the helloKitty, itMonkey, and thundercats examples.
Cheers for your help guys, I've change the icon on my portal, but now I'd really like to add a url behind the logo, so that when someone clicks the icon, it takes staff back to the home page...
Any ideas?