5

This is a weird problem I am facing. The Sonata admin bundle logo and the title are displayed on 2 different lines..

My Dashboard

The following are the contents of my config file.

sonata_block:
    default_contexts: [cms]
    blocks:
        sonata.admin.block.admin_list:
            contexts:   [admin]

        sonata.block.service.text:
        sonata.block.service.action:
        sonata.block.service.rss:

sonata_admin:
    title:      MyTitle

Any ideas?

j0k
  • 22,600
  • 28
  • 79
  • 90
user1584103
  • 193
  • 2
  • 15

1 Answers1

19

try your own logo

sonata_admin:
    title:      MyTitle
    title_logo: /bundles/yourbundle/images/logo.png
dnagirl
  • 20,196
  • 13
  • 80
  • 123
ibasaw
  • 493
  • 1
  • 7
  • 22