미채택 완료

초보 카피라이트 부분 질문좀 드립니다.

2014-01-04 (토) 14:00:06 5,519
nnn.JPG



초보카피라이트 부분 질문좀 드립니다.
사진에서 테스트1은 정상적으로 자리를 찾아가는데요 테스트2 테스트3은 오른쪽으로 붙더라구여 원하는 위치는
사진에서 빨간색 부분으로 테스트2 테스트3 이 위치해야되는데요
"tail.php" 카피라이트 부분 수정하고 있는 소수 올려드립니다. 고수님들 보시고 지도좀 부탁드립니다. "감사합니다"
<!-- 카피라이트 시작 -->
<table align="center" width="<?=$table_width?>" border="0" cellspacing="10" cellpadding="10">
<tr>
<td align="center" valign="top" background="<?=$g4['path']?>/img/copyright.gif"></td>
</tr>
<tr>
<td width="100">테스트1</td>
<td width="100">테스트2</td>
<td width="100">테스트3</td>
</tr>
<tr>
<td align="center">
 <font color="#848484">Copyright ⓒ your-domain. All rights reserved.</font></td>
</tr>
</table>
<!-- 카피라이트 끝 -->
 
|

답변 2개 / 댓글 9개

Copy
<table align="center" width="<?=$table_width?>" border="0" cellspacing="10" cellpadding="10">
    <tr>
        <td align="center" valign="top" background="<?=$g4['path']?>/img/copyright.gif"></td>
    </tr>
    <tr>
        <td>테스트1&nbsp;테스트2&nbsp;테스트3</td>
    </tr>
    <tr>
        <td align="center"><font color="#848484">Copyright ⓒ your-domain. All rights reserved.</font></td>
    </tr>
</table>

답변에 대한 댓글 9개

nine님 감사합니다. 근데 자리는 찾아가는데요 저기서 게시판에 링크를 어떻게 걸어야하나여 그리고 [code]로 감싼다는 말이 어디를 어떻게 감싸면 SyntaxHighlight 가 적용된다는 건지요 적용되면 어떻게 머가 달라지나여 ㅜㅡ
새해 복 많이 받으세요
텍스트에 링크걸기입니다.
<td><a href="게시판 링크경로">테스트1</a>  |  <a href="게시판 링크경로">테스트2</a>  |  <a href="게시판 링크경로">테스트3</a></td>
Syntaxhighlight 는 이 게시판에만 적용되는 내용입니다. :)
아 감사합니다 적용해보니 링크도 잘걸리구요 잘돼네요 신경써주셔서 감사합니다. 텍스트와 텍스트 사이 간격을 어캐 조절하나여 너무 사이가 딱 붙어서 조금 벌리고 싶어서여
텍스트 사이 빈공간 처리는   원하는 만큼 추가~
님아 전 지금 이렇게 넣는데 상관없나여 링크는 걸려요   <<이거 추가해도 출력되는간격은 드대로 에요
<td><a href="/bbs/board.php?bo_table=atable1"> <font color="cccccc">테스트1</a><a href="/bbs/board.php?bo_table=atable2"> <font color="cccccc">테스트2</a><a href="/bbs/board.php?bo_table=atable1">
<font color="cccccc"> 테스트3</a></td>
nine님 감사 합니다. 님아 링크밑줄 없애려면 요기만 적용하고 싶은데요 어캐하나요 자주 물어바서 죄송해여 ㅜㅡ
style.css 파일에 아래처럼 추가해주시고
a:link.bottom , a:visited.bottom, a:active.bottom { text-decoration:none; color:#cccccc; }
a:hover.bottom { text-decoration:none; color:#b2b2b2;}

링크경로에 class="bottom" 처럼 클래스를 지정해주세요.
<td>
<a href="/bbs/board.php?bo_table=atable1" class="bottom">테스트1</a>     
<a href="/bbs/board.php?bo_table=atable2" class="bottom">테스트2</a>     
<a href="/bbs/board.php?bo_table=atable1" class="bottom">테스트3</a>
</td>
nine 님아 정말 감사해요 알려주신대로 해서 적용했어요 깔끔하게 됐네요 "새해 복 많이 받으세요"
2014-01-04 (토) 15:00:29
Copy
<!-- 카피라이트 시작 -->
<table align="center" width="<?=$table_width?>" border="0" cellspacing="10" cellpadding="10"><tr><td colspan="4" align="center" valign="top" background="<?=$g4['path']?>/img/copyright.gif"></td></tr>
<tr><td width="100">테스트1</td><td width="100">테스트2</td><td width="100">테스트3</td>
<td></td></tr>
<tr><td colspan="4" align="center"> <font color="#848484">Copyright ⓒ your-domain. All rights reserved.</font></td></tr></table>
<!-- 카피라이트 끝 -->

답변을 작성하려면 로그인이 필요합니다.