'adsense'에 해당되는 글 2건

  1. 2009.07.29 본문에 adsense 광고 넣기
  2. 2008.02.04 블로그 사이드바에 adsense 붙이기
심심하던 차에 블로그에 adsense 광고를 넣었다.
이번에는 본문에 광고 넣는 것에 대해서만 정리하며 사이드바에 광고 넣는 것은 http://goolog.tistory.com/72를 참고한다.

(1), HTML/CSS 편집의 skin.html에서 ##_article_rep_desc_## 위아래로 아래 내용을 붙여 넣는다.

1. 본문 상단 광고 ( 468 * 60 사용)
<div class="google_top">

<script type="text/javascript"><!--
google_ad_client = "pub-1563807252562203";
/* 468x60, 작성됨 09. 7. 25 */
google_ad_slot = "1636084048";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

</div>

2. 본문 하단 광고(300*250 사용)
<div class="google_bottom">

<script type="text/javascript"><!--
google_ad_client = "pub-1563807252562203";
/* 300x250, 작성됨 09. 7. 25 */
google_ad_slot = "0729127942";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

</div>

(2). style.css에 아래 내용을 추가한다.
.google_top {
  width:100%;
  height:70px;
  float:left;
}

.google_bottom {
  width:100%;
  height:250px;
  float:left;
}

'메모' 카테고리의 다른 글

Kindle 관련 브라우져 확장 기능  (0) 2011.10.10
영어 단어  (0) 2009.04.25
영어단어  (0) 2009.04.11
영어단어  (0) 2009.03.30
USPS의 m-bag 가격  (0) 2009.03.17
오늘의 영어 단어  (0) 2009.03.07
스탠드 전구 사기  (0) 2009.02.26
데스크탑 사양  (0) 2008.08.17
북마크 정리  (0) 2008.06.05
북마크 정리  (0) 2008.05.18
Posted by Gu Youn
,

1. adsense 홈페이지에서 광고 코드를 복사 한다.

<script type="text/javascript"><!--
google_ad_client = "";
/* 200x200, 작성됨 08. 2. 3 */
google_ad_slot = "";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>


2. 스킨의 html 편집메뉴에서 아래 내용을 <s_sidebar> ~ </s_sidebar> 사이에 적당한 곳에 붙여넣는다.
google adsense는 모듈이름으로 마음대로 수정해도 된다.

<s_sidebar_element>
<!-- google adsense -->
<div id="adsense">

<script type="text/javascript"><!--
google_ad_client = "";
/* 200x200, 작성됨 08. 2. 3 */
google_ad_slot = "";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script>
<script type="text/javascript"
src="
http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

</div>
</s_sidebar_element>

사용자 삽입 이미지

3. 화면 아래에 있는 저장 버튼을 누른다.

4. 사이트바 설정 메뉴에 가면 google adsense이름을 갖는 모듈이 추가되어 있다. 그것을 적당한 곳에 위치시키면 끝...
 

'Computer > etc' 카테고리의 다른 글

robocopy를 사용하자.  (0) 2009.08.15
Visual Basic 6.0 - mouse wheeel  (0) 2009.08.06
Firefox 스크롤 조정하기  (0) 2009.03.08
USB 바이러스 예방  (0) 2009.02.14
USB 메모리 초기화  (0) 2009.01.12
컴퓨터 관련 북마크 정리 - 20080720  (0) 2008.07.20
Builder 와 Delphi 컴포넌트 설치 규칙  (0) 2008.07.20
Posted by Gu Youn
,