Сделал портфолио, на картинке есть две кнопки, одна увеличить картинку вторая перейти по ссылке.
Но когда хочю увеличить картинку открывает в новой вкладке, как сделать чтобы открывало на сайте???
HTML
1st gallery Item
Nullam id dolor id nibh ultricies vehicula.
CSS
#isotope-gallery-container .col-md-3 {
margin-right: -1px;
}
.gallery-item-wrapper {
padding-bottom: 25px;
padding-top: 25px;
}
.gallery-item {
overflow: hidden;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
border-radius: 1px;
padding-bottom: 50px;
}
.flush .gallery-item {
border-radius: 0;
}
.gallery-item .gallery-thumb {
position: relative;
overflow: hidden;
}
.gallery-item .gallery-thumb img {
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.gallery-item:hover .gallery-thumb img {
transform: scale(1.1);
}
.gallery-item .gallery-thumb .image-overlay {
background-color: #2c3e50;
width: 100%;
height: 100%;
display: block;
position: absolute;
top: 0;
left: ;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.gallery-item:hover .gallery-thumb .image-overlay {
opacity: 0.50;
filter: alpha(opacity=0);
}
.gallery-item .gallery-thumb .gallery-zoom, .gallery-item .gallery-thumb .gallery-link {
width: 45px;
height: 45px;
text-align: center;
background-color: #2c3e50;
display: none;
line-height: 45px;
position: absolute;
top: 50%;
margin-top: -25px;
padding: 2px 0 0 10px ;
font-size: 18px;
color: #fff;
display: block;
border-radius: 3px;
}
.gallery-item .gallery-thumb .gallery-zoom:hover, .gallery-item .gallery-thumb .gallery-link:hover {
background-color: #ff5722;
color: #ffffff;
}
.gallery-item .gallery-thumb .gallery-zoom:focus, .gallery-item .gallery-thumb .gallery-link:focus {
outline: none;
}
.gallery-item .gallery-thumb .gallery-link {
right: 0;
margin-right: -45px;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.gallery-item .gallery-thumb .gallery-zoom {
left: 0;
margin-left: -45px;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.gallery-item:hover .gallery-thumb .gallery-zoom {
display: block;
left: 50%;
margin-left: -48px;
}
.gallery-item:hover .gallery-thumb .gallery-link {
display: block;
right: 50%;
margin-right: -48px;
}
.gallery-item .gallery-details {
text-align: center;
padding-top: 20px;
background-color: #fff;
border: 2px solid #ecf0f1;
border-top: 0;
overflow: hidden;
}
.gallery-item .gallery-details h5 {
margin: 0;
font-size: 1em;
font-weight: 700;
position: relative;
}
.gallery-item .gallery-details p {
font-size: .9em;
}