how to override a css of sonata admin bundle in symfony2

Aman Varshney

i want to override a css file i.e reside in sonata-project/admin-bundle/Sonata/AdminBundle/Resources/public/bootstrap/css path of sonata admin bundle project. Please help me out.

M Khalid Junaid

One way you can you override the css files of sonata admin but remember this will override the block of stylesheets but still you can call the stylesheets of parent block by calling {{ parent() }}

{% block stylesheets %}
   /* this will override the parent block you can define here your css files*/
    <link rel="stylesheet" href="{{ asset('cssfilepath.css') }}"/>
{% endblock %}

{% block stylesheets %}
    /*this will extend the parent block */
    {{ parent() }}
    <link rel="stylesheet" href="{{ asset('cssfilepath.css') }}"/>
{% endblock %}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Sonata Media Bundle Override

From Dev

Symfony 2.3.6 and Sonata Admin Bundle : Empty dashboard and no errors

From Dev

Symfony2 and Sonata Admin Bundle - filter timestamp displayed as date

From Dev

How to upload image and display on edit of profile using sonata admin bundle

From Dev

Display the Sonata Admin Bundle inside a view of a Symfony Bundle

From Dev

How to list objects with a simple array type field on a Symfony project with the Sonata Admin Bundle

From Dev

How to get images listed in sonata admin bundle backend

From Dev

Configure Menu in Sonata Admin Bundle

From Dev

Use tags in Sonata Admin Bundle

From Dev

how to include an entity join in sonata bundle admin list view

From Dev

sonata admin bundle symfony

From Dev

How to override global Monolog configuration from a bundle in Symfony2

From Dev

Sonata Admin Bundle and roles may explain to me how it works

From Dev

The show action of Symfony 2 Sonata Admin Bundle is not working

From Dev

CKEditor not showing with Sonata Formatter (Sonata Admin Bundle)

From Dev

How to override default upload path of sonata media bundle in symfony?

From Dev

Conflicts with sonata admin bundle and LiipFunctionalTestBundle

From Dev

Symfony2 and Sonata Admin Bundle - filter timestamp displayed as date

From Dev

How to list objects with a simple array type field on a Symfony project with the Sonata Admin Bundle

From Dev

How to display a photo in Sonata Admin Bundle

From Dev

How to override global Monolog configuration from a bundle in Symfony2

From Dev

How to override default upload path of sonata media bundle in symfony?

From Dev

Symfony2 Best Practices Editable text sonata admin bundle

From Dev

Symfony 2 Sonata Media bundle: saving media file image without sonata admin

From Dev

Symfony2 - Override Sonata AdminBundle filter

From Dev

Batch actions with Sonata Admin Bundle on Symfony

From Dev

Sonata admin bundle , Symfony2

From Dev

How to add filter to configureListField in Sonata Admin Bundle (createQuery method)

From Dev

How to create a custom form using CRUD controller in sonata admin bundle?

Related Related

  1. 1

    Sonata Media Bundle Override

  2. 2

    Symfony 2.3.6 and Sonata Admin Bundle : Empty dashboard and no errors

  3. 3

    Symfony2 and Sonata Admin Bundle - filter timestamp displayed as date

  4. 4

    How to upload image and display on edit of profile using sonata admin bundle

  5. 5

    Display the Sonata Admin Bundle inside a view of a Symfony Bundle

  6. 6

    How to list objects with a simple array type field on a Symfony project with the Sonata Admin Bundle

  7. 7

    How to get images listed in sonata admin bundle backend

  8. 8

    Configure Menu in Sonata Admin Bundle

  9. 9

    Use tags in Sonata Admin Bundle

  10. 10

    how to include an entity join in sonata bundle admin list view

  11. 11

    sonata admin bundle symfony

  12. 12

    How to override global Monolog configuration from a bundle in Symfony2

  13. 13

    Sonata Admin Bundle and roles may explain to me how it works

  14. 14

    The show action of Symfony 2 Sonata Admin Bundle is not working

  15. 15

    CKEditor not showing with Sonata Formatter (Sonata Admin Bundle)

  16. 16

    How to override default upload path of sonata media bundle in symfony?

  17. 17

    Conflicts with sonata admin bundle and LiipFunctionalTestBundle

  18. 18

    Symfony2 and Sonata Admin Bundle - filter timestamp displayed as date

  19. 19

    How to list objects with a simple array type field on a Symfony project with the Sonata Admin Bundle

  20. 20

    How to display a photo in Sonata Admin Bundle

  21. 21

    How to override global Monolog configuration from a bundle in Symfony2

  22. 22

    How to override default upload path of sonata media bundle in symfony?

  23. 23

    Symfony2 Best Practices Editable text sonata admin bundle

  24. 24

    Symfony 2 Sonata Media bundle: saving media file image without sonata admin

  25. 25

    Symfony2 - Override Sonata AdminBundle filter

  26. 26

    Batch actions with Sonata Admin Bundle on Symfony

  27. 27

    Sonata admin bundle , Symfony2

  28. 28

    How to add filter to configureListField in Sonata Admin Bundle (createQuery method)

  29. 29

    How to create a custom form using CRUD controller in sonata admin bundle?

HotTag

Archive