최근게시글에 밑줄 없애는법 정보
최근게시글에 밑줄 없애는법관련링크
http://wenetan.dothome.co.kr
125회 연결
본문
댓글 전체

style.css 파일의 link 부분을 확인해 보세요
" a:hover { text-decoration:underline; } "
이부분의 "underline" 을 'none'로 하면 되나요?
아님 어떤??
이부분의 "underline" 을 'none'로 하면 되나요?
아님 어떤??

a:link, a:visited, a:active { text-decoration:none; } 입니다.
메인폴더안에 style..css 파일에 있을 수 있고요, 스킨폴더 안의 파일 안에 따로 들어가 있을 수 있습니다.
메인폴더안에 style..css 파일에 있을 수 있고요, 스킨폴더 안의 파일 안에 따로 들어가 있을 수 있습니다.
style.css 화일이 2개있길래 두개다 고쳤는데 안돼여!!ㅠㅠ
심지어 2개 화일에서 'underline' 이라고 써있는 부분은 다 고쳤는데도 안되는데요
심지어 2개 화일에서 'underline' 이라고 써있는 부분은 다 고쳤는데도 안되는데요

<style>
/*원하는 스타일로 지정*/
tt a:visited { color: slategray; text-decoration: none; }
tt a:hover { color: tomato; text-decoration: none; }
tt a:link { color: slategray; text-decoration: none; }
</style>
라고 적으시고
링크문자열(<a></a>) 앞뒤에 <tt></tt>로 감싸주세요
Ex)<tt><a href='링크주소'>제목문자열</a></tt>
/*원하는 스타일로 지정*/
tt a:visited { color: slategray; text-decoration: none; }
tt a:hover { color: tomato; text-decoration: none; }
tt a:link { color: slategray; text-decoration: none; }
</style>
라고 적으시고
링크문자열(<a></a>) 앞뒤에 <tt></tt>로 감싸주세요
Ex)<tt><a href='링크주소'>제목문자열</a></tt>