The way I want the CSS elements should appear works on firefox but not chrome and IE.
Link to the screenshot comparison is below
http://postimg.org/image/3sjfgyjzh/
essentially I have four inline li which are images, when viewed in chrome or IE the third of four falls onto a new line when there is clearly enough space to fit all the elements.
hopefully someone can help, Thanks :)
#footer-nav {
background: #999;
/* for non-css3 browsers */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0E63AD', endColorstr='#0E63AD');
/* for IE */
background: -webkit-gradient(linear, left top, left bottom, from(#5FAFF5), to(#0E63AD));
/* for webkit browsers */
background: -moz-linear-gradient(bottom, #0E63AD, #5FAFF5);
/* for firefox 3.6+ */
padding-top: 0px;
padding-bottom: 14px;
margin: 0px !important;
position: absolute !important;
bottom: 20px !important;
right: 0px !important;
left: -9px !important;
}
.nav-menu li {
display:inline;
margin-left: 16px;
/*padding-left: 8px;*/
right: 0px;
}