So here is the deal I'm a college student majoring in computer science and web development, So I'm still learn everything. One day I post a ad on Craigslist saying I'm looking to do some pro bono work, Because I'm a student trying start a portfolio and so on, doing website related work. Here is the problem one of my clients has a blogger she asked me if I could do a couple of thing like make a nav bar and link things up and so on. So after I made the nav bar I notice that her comments are all messed up I'm not sure if it's the css in the nav bar or something else. here is my code for the nav bar <style> #logo-bloglovin:hover,#logo-bloglovin:active { background-position:0 -64px; } #logo-facebook { background-position:-210px 0px; } #logo-facebook:hover,#logo-facebook:active { background-position:-210px -64px; } #logo-instraram { background-position:-420px 0px; } #logo-instraram:hover,#logo-instraram:active { background-position:-420px -64px; } #logo-googleplus { background-position:-660px 0px; } #logo-googleplus:hover,#logo-googleplus:active { background-position:-660px -64px; } #logo-contact { background-position:-880px 0px; } #logo-contact:hover,#logo-contact:active { background-position:-880px -64px; } ul.chicnav { border: none !important; display: block; list-style: none; } li{ display: inline-block ; } ul.chicnav li a { width:210px; height:62px; text-decoration:none; display:block; border: none !important; background: url('http://i47.tinypic.com/280nmtx.png') 0 0 no-repeat; } ul.chicnav li a:hover { background-color: transparent !important; } </style> <ul class="chicnav"> <li><a href="http://www.bloglovin.com/blog/3798040/chic-fashion-world" id="logo-bloglovin" > </a></li> <li><a href="http://www.facebook.com/pages/Chic-Fashion-World/248420155275530" id="logo-facebook" > </a></li> <li><a href="http://instagram.com/borka12/" id="logo-instraram" > </a></li> <li><a href="https://plus.google.com/109438806289588533953/posts" id="logo-googleplus" > </a></li> <li><a href="http://chicfashionworld.blogspot.com/p/contact.html" id="logo-contact" > </a></li> </ul> I'm note sure if I'm allowed to post links up from what I was reading in the rules section when signing up so look up chic fashion world on google and the site test I made with some improvement is chicfashionworldtest. if you have and suggestions for me and improvements for me please let me know and if you know the answer to my question please help me out.