href
seems to be causing issues in Chrome, but it works fine on Microsoft Internet Explorer or Edge.
It appears that the line (a href="....html")Something(/a) is not functioning properly on edge or safari.
It behaves like a dropdown menu.
There is a significant amount of code involved. You can examine the problem at this link: . Upon clicking on one of the 4 blue lines, a dropdown menu will appear.
.dropdown {
position: relative;
border-radius: 0px;
}
.dropdown-menu {
top: 100%;
left: 0;
z-index: 1000;
float: inherit;
padding: 5px 0;
margin: 4px 0 0;
font-size: 14px;
text-align: left;
list-style: none;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 0px solid #ccc;
border: 0px solid rgba(0, 0, 0, .15);
border-radius: 0px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333;
white-space: nowrap;
}
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
color: #262626;
text-decoration: none;
background-color: #f5f5f5;
}
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px dashed;
border-top: 4px solid \9;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
<li class="dropdown" style="list-style-type: none; padding: 5px; background-color: #3a4d5d; margin: 2px"><a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false" aria-haspopup="true" style="color: white; padding-left: 10px">Pakalpojumi <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="/lv/services_design.html">Interjera dizains</a></li>
<li><a href="/lv/services_kit_designing.html">Virtuves projektēšana</a></li>
</ul>
</li>