My uploaded css is using border: thin dashed but Firebug is show the style as border: thin solid.
This is uploaded style
#menu a{
padding-left: 5px;
padding-right: 5px;
padding-top: 3px;
padding-bottom: 3px;
color: #FFF;
text-decoration: none;
border: thin dashed #FFF;
border-radius: 3px;
outline: none;
}
This is CSS I see in Firebug
#menu a {
border: thin solid #FFFFFF;
border-radius: 3px 3px 3px 3px;
color: #FFFFFF;
outline: none;
padding: 3px 5px;
text-decoration: none;
}
On local preview (F12-Firefox 16) #menu a border is dashed, but loaded from server, #menu a border is solid!
Sounds like some caching is in play. Try clearing your browser’s cache. If that doesn’t work, add ?v1 to the end of the URL you use to call the CSS file. This will work as a cache buster. Ex: /assets/CSS/styles.css?v1
If neither work, I’d say you aren’t uploading your CSS to the correct location.