주소 : http://www.simkorea.org/
테마 : 아바다 5.4버전
홈페이지 폰트 : 나눔고딕
K보드 사용 스킨 : 모던갤러리, 플레이 비디오
증상 : 기본 게시판 및 모던갤러리에서 띄어쓰기가 나오지 않습니다.(플레이 비디오에서는 제대로 보입니다.)
어떤점이 문제인지 모르겠는데 확인 부탁드립니다.
안녕하세요~^^
웹 폰트를 직접 적용하셨는지요?
font-family에 !important 속성이 추가되어 문제가 되고 있습니다.
FTP로 접속해서 /wp-content/themes/Avada-Child-Theme/style.css 파일에
아래의 코드를
body,h1,h2,h3,h4,h5,h6,li,a,textarea,p,span,dl,dt,dd,td,th,button,strong,label,input { font-family: dashicons,IcoMoon,'Nanum Gothic'!important; }
아래의 코드로 교체해보세요.
body,h1,h2,h3,h4,h5,h6,li,a,textarea,p,span,dl,dt,dd,td,th,button,strong,label,input { font-family: dashicons,IcoMoon,'Nanum Gothic'; }
!important 속성은 꼭 필요한 경우가 아니라면 최소한으로 사용해야합니다.
고맙습니다.