Hi There,
I know i've been posting a lot recently and I'm still semi-new to learning all the 'tricks of the trade' and I've got books such about CSS and HTML though I cannot find anyway to sort out resolution problems with images and things. I've got the image in the navigation bar but for some users they cannot see the logo, why is this and how can it be fixed? The website is teamshift.co.uk (only started coding it).
menu.css
.wrapper {
width: 100%;
height: 60px;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#464646', endColorstr='#5a5a5a'); /* for IE */
background: -moz-linear-gradient(center bottom, rgb(70, 70, 70), rgb(90, 90, 90)) repeat scroll 0% 0% transparent;
background: -webkit-gradient(linear, center bottom, center top, from(rgb(70, 70, 70)), to(rgb(90, 90, 90)));
border-top: 2px solid rgb(90, 90, 90);
position: relative;
margin-left: auto;
margin-right: auto;
}
.container {
width: 1000px;
margin: 0px auto;
position: relative;
}
.container img {
position:absolute;
top:5px;
left:1120px;
}
.menu {
height: 60px;
float: left;
}
div.menu {
height: 60px;
}
div.menu a:first-child {
border-right: 0;
border-left: 0;
}
div.menu div {
list-style: none outside none;
float: left;
height: 60px;
text-align: center;
}
div.menu a {
display: block;
padding: 0 20px;
border-left: 1px solid rgba(255,255,255,0.1);
border-right: 1px solid rgba(0,0,0,0.1);
text-align: center;
line-height: 60px;
-webkit-transition-property: background;
-webkit-transition-duration: 700ms;
-moz-transition-property: background;
-moz-transition-duration: 700ms;
}
div.menu a:hover {
background: transparent none;
}
div.active a{
}
div.menu p:first
{
}