html - All images resize except for one -


i building website myself sort of cv. things going pretty well, though have 1 problem.

in css targeted images in jumbotron, still, 1 of images won't resize when make browser smaller, rest does. have no idea why after searching , trying, thought maybe guys me out here.

what resize icon's social media , contact. doesn't resize, catcolor.img (yeah it's picture of me holding cat in azores, cute , that).

.jumbotron {    /*background: url('image.jpg') no-repeat center center;    background-size: cover;*/    height: 400px;    background-color: transparent;      margin-left: 7%;      margin-right: 7%;  }    .jumbotron img {    display: block;    margin-left: auto;    margin-right: auto;    border-radius: 10px;    border: 4px solid white;      max-width: 100%;      height: auto;  }    .jumbotron h1, p {    color: black;  }    .jumbotron p {    font-size: 18px;    margin-top: 40px;  }    #nopadding {    padding-left: 0px;  }    .btn-default {    text-decoration: none;    margin-top: 15px;    background-color: #281a1f;    color: white;    font-size: 14px;  }    .btn-default:hover {    background-color: #5d6263;    color: white;  }    .jumbotron li {    list-style: none;    margin: 13px;  }    .jumbotron ul {    padding: 0px;  }    .contact img {    border: 0px;  }
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>  <div class="jumbotron">    <div class="container-fluid">      <div class="row">        <div class="col-md-8">          <h1>title</h1>          <p id="nopadding">subtitel</p>          <a href="#" class="btn btn-default">go latest creation</a>        </div>        <div class="col-md-3">          <img src="img/catcolor.jpg">        </div>        <div class="col-md-1">          <ul class="contact">            <li><a href="#" target="_blank"><img src="img/usedicons/linkedin.png" height="35" width="35"></a></li>            <li><a href="#" target="_blank"><img src="img/usedicons/instagram.png" height="35" width="35"></a></li>            <li><a href="#" target="_blank"><img src="img/usedicons/wordpress.png" height="35" width="35"></a></li>            <li><a href="#" target="_blank"><img src="img/usedicons/pinterest.png" height="35" width="35"></a></li>            <li><a href="#" target="_blank"><img src="img/usedicons/flickr.png" height="35" width="35"></a></li>            <li><a href="#" target="_blank"><img src="img/usedicons/gmail.png" height="35" width="35"></a></li>          </ul>        </div>      </div>    </div>  </div>


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -