How to put logo reponsivo in my site [closed]

0

Hello,

I'm having a problem with the blog logo that after its update only it is not getting responsive.

Iwouldliketoknowwhattochangeincss.Icouldonlyfind"logo" in the following codes:

Thank you in advance.

    
asked by anonymous 04.01.2017 / 20:57

1 answer

1

You can use the "img-responsive" class of the boostrap ( Documentation ) in the element of your banner image.

Ex:

<img src="teste.jpg" class="img-responsive" />

But it is important to remember that this will decrease the image proportionally to the space intended for it. In your case, it will probably be unreadable. A better solution requires you to create an alternate image for smaller resolutions, or "break" that banner into small images so they can appear one underneath the other.

    
04.01.2017 / 21:51