Navbar background image

Hello guys, i am newbie i am trying to make a background image to my navbar but it’s not working
`

<ion-navbar color="primary" class="head">
    <ion-title>Profile</ion-title>
</ion-navbar>

`
Here is my css :

    .head{
    background-image: url("http://i66.tinypic.com/v6htsz.jpg");
    background-size: cover;}
1 Like

Hey, the correct way of setting a background is through the class .toolbar-background, as in:

    background-image: url(http://i66.tinypic.com/v6htsz.jpg);
}```
1 Like