I have to make some changes on the ui. Now I try to replace the built-in sensenet logo, but I am stucked. I tried to change /Root/Global/images/sensenetlogo.png
but there is no option to replace it.
Asked
Active
Viewed 143 times
0

Aniko Litvanyi
- 2,109
- 1
- 21
- 25

sameer
- 17
- 6
1 Answers
1
The logo is defined in a css file (/Root/Skins/sensenet/styles/skin.css)
Search for this part:
.sn-layout-inter-index .sn-slogen {
position: absolute;
left: 5px;
top: 13px;
font-size: 16px;
color: #fff;
font-weight: normal;
background: url(/Root/Global/images/sensenetlogo.png) no-repeat;
padding-left: 150px;
padding-top: 10px;
padding-bottom: 10px;
}
and change the background-image url. This will will replace the logo on the homepage.
Replacing the logo on other subpages change the logo url the same way at
.sn-layout-intra .sn-layout-head .sn-logo, .sn-layout-inter .sn-layout-head .sn-logo, .sn-layout1 .sn-layout-head .sn-logo {
...
}
If you installed sensenet from source make sure that you changed the .css file both in the file system and through sensenet's admin surface (Content Explorer).

Aniko Litvanyi
- 2,109
- 1
- 21
- 25
-
i added logo image in /Root/Global/images/ourlogo.PNG and replaced code with same url: .sn-layout-inter-index .sn-slogen { font-size: 1.8em; color: #fff; font-weight: normal; background: url(/Root/Global/images/ourlogo.PNG) 20px 50% no-repeat; padding-left: 170px; padding-top: 10px; display: table-cell; vertical-align: middle; width: 400px; } but its not replacing default logo ;( – sameer Mar 08 '17 at 10:14
-
I done all changes but still it showing default logo. ( i don't deleted default logo) – sameer Mar 08 '17 at 11:02
-
Did you change the skin of your site? Have you made a custom skin? – Aniko Litvanyi Mar 08 '17 at 11:14
-
nope i am using default skin with Sense/Net version 6.5.4.9243 – sameer Mar 08 '17 at 11:20
-
Can you share your site's url? – Aniko Litvanyi Mar 08 '17 at 11:23
-
site is locally hosted. :( – sameer Mar 08 '17 at 11:24
-
Where did you change the css? In the Content Explorer (admin surface) or in the file system? – Aniko Litvanyi Mar 08 '17 at 11:26
-
How did you install sensenet, from source or with the webpi package? – Aniko Litvanyi Mar 08 '17 at 11:34
-
i installed using source – sameer Mar 08 '17 at 11:38
-
Try to change the skin.css file not only on sensenet's admin surface but also in your file system (on your local machine) – Aniko Litvanyi Mar 08 '17 at 11:41
-
I've added info to my answer that it must be checked in the file system and in the content explorer too. If it was helpful pls approve my answer. Thanks! :) – Aniko Litvanyi Mar 09 '17 at 10:39