views:

83

answers:

2

hey guys, i was wondering if there was a way to change the Django CMS logo, for my own company logo ?

+1  A: 

Which logo do you mean?

I think logo is just an image inside the template, right?

Check out the template in cms/templates/cms/new.html

kender
the logo that appears in the top left corner of the admin page, and says Django CMS, i went to the file you said and changed it, but nothing happened
paulo
Then you should check out the admin templates. Especially any that would defind a {% block branding %}, maybe you have it there?
kender
A: 

Replace /media/cms/images/cms_toolbar.png

Or edit the #cms_toolbar definition in the media/cms/css/toolbar.css stylesheet.

Wolo
thanks guys, i have changed it successfully, turns out i had to do it from the base.html template
paulo