Having a bit of trouble with two links ("WORK" and "ABOUT") at the top of this page.
I can't seem to style them properly. All I can do in CSS is apply a float, nothing else works.
#nav_container {
float: right;
position: relative;
padding-right: 110px;
padding-top: 60px;
}
#nav_container li {
float: left;
display: inline;
color: #fff;
list-style: none;
text-decoration: none;
cursor: pointer;
}
If I expand my browser so that they are off to the right of the tiled images, they become clickable.
The tiled images have a relative setting for an overlap effect, while the blue bar is set to absolute.
I've tried adjusting the z-index values for both the tiled images and the nav links to make the links appear on top and clickable, but no luck.
Any ideas?