html - Inserting a link -
how can turn facebook font awesome icon link? whenever insert link pushes icon out of frame of picture. put other social media icons beside facebook icon aswell @ moment trying solve problem of getting icon link facebook.
css
.polaroid-images { background: white; display: inline; float: left; margin: 0 15px 70px; padding: 10px 10px 25px; text-align: center; text-decoration: none; -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, .3); -moz-box-shadow: 0 4px 6px rgba(0, 0, 0, .3); box-shadow: 0 4px 6px rgba(0, 0, 0, .3); -webkit-transition: .15s linear; -moz-transition: .15s linear; transition: .15s linear; z-index: 0; position: relative; } .polaroid-images a, :after { color: #333; font-size: 20px; content: attr(title); position: relative; top: 15px; } .polaroid-images img { display: block; width: inherit; } .polaroid-images a, i:nth-child(3n) { -webkit-transform: rotate(-24deg); -moz-transform: rotate(-24deg); transform: rotate(-24deg); } .polaroid-images a:hover { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); transform: rotate(0deg); -webkit-transform: scale(1.2); -moz-transform: scale(1.2); transform: scale(1.2); z-index: 10; -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .7); -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, .7); box-shadow: 0 10px 20px rgba(0, 0, 0, .7); } .polaroid-images { position: relative; font-size: 1em; top: 15px; margin-right: .5em; color: #3b5998; }
html
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font- awesome.min.css" rel="stylesheet"/> <div class="polaroid-images"> <a href="" title="alex"><img height="200" src="http://kenwheeler.github.io/slick/img/fonz1.png" alt="island" title="alex" class=fishes /><i class="fa fa-facebook fa-3x"></i></a> </div>
so, of right have link wrapping entire card. should remove unless want whole card link facebook. here's do:
.polaroid-images div { background: white; display: inline; float: left; margin: 0 15px 70px; padding: 10px 10px 25px; text-align: center; text-decoration: none; -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, .3); -moz-box-shadow: 0 4px 6px rgba(0, 0, 0, .3); box-shadow: 0 4px 6px rgba(0, 0, 0, .3); -webkit-transition: .15s linear; -moz-transition: .15s linear; transition: .15s linear; z-index: 0; position: relative; } .polaroid-images div, :after { color: #333; font-size: 20px; content: attr(title); position: relative; top: 15px; } .polaroid-images img { display: block; width: inherit; } .polaroid-images div, i:nth-child(3n) { -webkit-transform: rotate(-24deg); -moz-transform: rotate(-24deg); transform: rotate(-24deg); } .polaroid-images div:hover { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); transform: rotate(0deg); -webkit-transform: scale(1.2); -moz-transform: scale(1.2); transform: scale(1.2); z-index: 10; -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .7); -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, .7); box-shadow: 0 10px 20px rgba(0, 0, 0, .7); } .polaroid-images { position: relative; font-size: 1em; top: 15px; margin-right: .5em; color: #3b5998; }
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font- awesome.min.css" rel="stylesheet"/> <div class="polaroid-images"> <div title="alex"> <img height="200" src="http://kenwheeler.github.io/slick/img/fonz1.png" alt="island" title="alex" class=fishes /> <a href="https://www.facebook.com/"><i class="fa fa-facebook fa-3x"></i></a> </div> </div>
essentially, removed a
tag entire block , wrapped around 4 fb icon. changed container div , changed style accordingly.
hope helps!
Comments
Post a Comment