Yearly Archives: 2014

Home/2014

Illustrator UI scale

illustrator 의 ui 사이즈가 너무 클 때   윈도우 제어판에서 '텍스트 및 기타 항목 크거나 작게 만들기' 로 들어가서 작게 를 선택

ie8 redirect

1. Put that code into  'header.php' of theme   Line 1. 사용하는 테마의 header.php에 맨 윗줄에 위의 코드를 넣는다. Read more..

Bridge theme ‘shortcodes.php on line 1000’ error

1. This error. Warning: Wrong parameter count for strstr() in ....  shortcodes.php on line 1000   2. Remove third parameter true.   카페24에 설치했을 때는 이상없는데 가비아에 설치한 것은 위와 같은 에러 발생. 일단 가비아에서는 데모 임포트도 잘 안됨. ㅠㅠ

Divi theme top navi issue- IE7

1. Top navi looks like this in IE7. That's because display: inline-block; css code dosen't work on IE7. 2. Open header.php file (yourdomain.com/wp/wp-content/themes/Divi/header.php) 3. Add this code in header.php. It looks like this. 4. Make ccs file and save it in your domain root. File name: ie7.css #top-menu li{ display: inline-block; *display: inline!important; [...]