-1

I need help with my transformicon I got from [here][1].

It stays locked to a certain size even after doing things like "width:..px", etc. How would I resize this?

You can test it out at [my site][2], just log in using the username/password 22/22.

Thanks in advance!

Gabriel Phua
  • 37
  • 1
  • 6
  • can you provide html and css codes? – Undecided Dev Aug 02 '16 at 07:21
  • Check out falconsnest.cf. My CSS and HTML is pretty cluttered. – Gabriel Phua Aug 02 '16 at 07:26
  • Please take a tour of the help center and see how to ask a good question. Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the **shortest code necessary to reproduce it in the question itself**. – Pete Aug 02 '16 at 07:50

2 Answers2

1

Try to add width:100% for the image class, it will fit automatically the width of the screen.

A.Tarhini
  • 72
  • 4
0

Given below is img-resonsive style from twitter bootstrap which should make your image responsive to screen size. Additionally, you may use media queries for computer screen and set some different max-width for larger display.

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
Vijay Meena
  • 683
  • 1
  • 7
  • 12