The element top_fixed_right:hover
on my homepage is functioning perfectly.
However, on a different page, the same div
only responds to the :hover
state when forced using Chrome's developer tools. Normal mouse hovering does not trigger it.
I tried opening the page in Safari as well, but had no success. It works on the homepage but not on the secondary page.
.top_fixed_right {
position: fixed;
right: 15;
top: 0px;
letter-spacing: 1px;
-webkit-transition: right 0.3s;
transition: right 0.3s;
font-family: 'Lato', sans-serif;
}
.top_fixed_right:hover {
right: 10;
}
<div class="top_fixed_right">
<p>About me</p>
</div>