I am just having two problems with call to action button that appears on mobile version of website. Firstly, the blue border appers around the button. First time I am seeing this blue border on click on my button. Is it possible to remove it?
Secondly, button unhovers after closing modal. I just need to click outside of button to unhover it.
Here is the page http://novostroyka.shahar.uz/complex/citylife
<a href="#" onclick="return false;" class="float2" data-toggle="modal" data-target="#myModal">
<i class="fa fa-phone my-float2" style="font-size:25px;"></i>
</a>
@media (min-width:800px) {
.float2{
visibility:hidden;
}
}
@media (max-width:768px) {
.float2{
position:fixed;
width:60px;
height:60px;
bottom:100px;
right:27px;
background-color:#24ac36;
color:#FFF;
border-radius:50px;
text-align:center;
box-shadow: 2px 2px 3px #999;
animation: bot-to-top 2s ease-out;
z-index:1000;
}
.my-float2{
font-size:24px;
margin-top:18px;
}
.ul2{
position:fixed;
right:30px;
padding-bottom:20px;
bottom:65px;
z-index:100;
}
.ul2 .li2{
list-style:none;
margin-bottom:10px;
}
.ul2 .li2 .a2{
background-color:#24ac36;
color:#FFF;
border-radius:50px;
text-align:center;
box-shadow: 2px 2px 3px #999;
width:60px;
height:60px;
display:block;
}
.ul2:hover{
visibility:visible!important;
opacity:1!important;
}
.modal-body2{
position: relative;
padding: 20px;
}