How to change Item-avatar <img> tag size in css?

I can’t change the height and the width of my avatar and It would be nice if someone can help me? is there a full documentation about the full CSS please provide links if possible. Thanks in advance… By the way my codes are so obvious I just get started using ionic… :smile:

Here’s my simple code:

<div class="item item-avatar">
<img src="http://indiemusicmag.com/home/wp-content/uploads/2015/02/singer.jpg" />
</div>

Here’s my simple css:

    .item-avatar {
width:30%; height:50%;
}

maybe you need to specify your css-selector.

inspect your app with chrome dev tools --> look at the css attributes for the element.
There you can find the complete selector you need to overwrite/extend

1 Like

Thanks for the help, I just searched the item-avatar class in the ionic scss :smile:

1 Like