Bar with background image

Is there a way to make it?
Here’s what I tried

See the Pen Ionic Starter Template: v0.9.25 by Timofey Trofimov (@tumoxep) on CodePen.

hi @tumoxep,

you just have to replace this:

.has-bg-image {
  height: 200px !important;
  background-color: none !important;
  background-image: url('http://ionicframework.com.s3.amazonaws.com/blog/creator/creator-header.png') no-repeat left top;
}

with this:

.has-bg-image {
  height: 200px !important;
  background-color: none !important;
  background: url('http://ionicframework.com.s3.amazonaws.com/blog/creator/creator-header.png') no-repeat left top !important;
}

there was some other rules that were overwrite your background image.

kind regards,

luc

1 Like

It works, thank you!