Custom Logo
So, I was wanting to add our company logo to the top of our Portal, and I found this thread:
https://community.cireson.com/discussion/comment/6727#Comment_6727
I followed the directions from the link (replaced \inetpub\CiresonPortal\CustomSpace\login.png), cycled the Cache Builder and did an IISReset.... and.... nothing.
Are there requirements as to what the file can and cannot be? (Size or dimension restrictions, etc..)
Best Answers
-
David_Allen Partner Advanced IT Monkey ✭✭✭What you need to do there is base64 encode your image, and then add it to the custom.css file in the CustomSpace directory..headerContent {background-image: url ('data:image/jpeg;base64,#base64 encoded image here#');5
-
james_kleinschnitz Cireson Dev, Product Owner Advanced IT Monkey ✭✭✭Here is an example of the css we have used in to add custom logos to the header:
.headerContent { background-image: url(data:image/png;base64,{base64Image}); background-repeat: no-repeat; background-size: 30px; padding-left: 35px; background-position: 0px 8px; }
Replace {base64Image} with the output from a tool like this one:
http://b64.io/
5
Answers
Oh, well that explains that.
Yes, I'm trying to add the logo to the top left of the portal pages where the portal name is
Replace {base64Image} with the output from a tool like this one:
http://b64.io/
<br>
That unfortunately hides the Image as well as the text.Admin Settings -> Setting Items -> Application Title
Just delete the value you have for Application Title.