Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

ul text decoration css

/* Remove `text-decoration` and setting the colour is easy */ 

#sidelinks a {
    color:black; 
    text-decoration:none;
} 

/* So is removing the dots */ 

#sidelinks ul { 
  list-style: none; /* <--- this right here */ 
  padding: 0; 
  margin: 0; 
} 

/* -GillesC */ 
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #ul #text #decoration #css
ADD COMMENT
Topic
Name
1+8 =