Problems with my css stylesheet coding -


i have similar problem others have had, answers did not help.

this coding:

        <div id="social-media">             <p>for aditional information<br>please call 03-5185-1208<p>             <ul>                 <li>                    <a href="http://www.facebook.com">                         <img src="images/social media/facebook 32x32.png">                    </a>                 </li>                 <li>                     <a href="http://www.twitter.com">                       <img src="images/social media/twitter 32x32.png">                     </a>                  </li>             </ul>         </div> 

my css style sheet

ul li{ display:inline; text-decoration:none; } 

but underline still remain. have tried included

{  border-bottom:none;  } 

nothing did work. can please?

use this

ul li{ display:inline;  } ul li a{text-decoration:none;} 

Comments

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

serialization - Convert Any type in scala to Array[Byte] and back -

SonarQube Plugin for Jenkins does not find SonarQube Scanner executable -