묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
검색창 수정하고 있는데 질문드립니다 ㅠㅠ
2013.02.26 21:55
*검색박스 배경이 검정색이라
input 안의 폰트를 흰색으로 바꾸긴했는데
레이아웃의 모든 input 박스 폰트가 전부 흰색이 되어버리는 사태가..ㅠㅠ
검색박스 input 부분만 폰트를 흰색으로 바꿀순 없을까요?
*검색박스에 미리 SEARCH 라고 써있고 클릭하면 글씨가 사라지는데요
value='SEARCH' onfocus="this.value=''" 를 이용해서 글자가 사라지는 것까지는 되는데
커서가 꺼지면 다시 SEARCH 라고 써져야 하는데 글씨가 나오지 않습니다...
onblur도 써보고 이것저것 해봤는데 안되네요..ㅜㅜ
방법을 아시는 분들의 답변을 기다립니다 ㅠㅠ
<div id="site_srch" class="srch">
<form action="{getUrl()}" method="get">
<input type="hidden" name="vid" value="{$vid}" />
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="act" value="IS" />
<input type="text" name="is_keyword" value='SEARCH' onfocus="this.value=''" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" />
<input type="image" src="./img/bs_{$layout_info->colorset}.png" alt="Search" class="is" />
</form>
</div>
댓글 2
-
푸시아
2013.02.26 23:41
-
sejin7940
2013.02.27 00:53
1번과 2번의 답을 합치면..
<input type="text" name="is_keyword" value='SEARCH' onfocus="this.value=''" onblur="if(this.value=='') this.value='SEARCH'" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" style="color:#fff" />
이렇게 처리하면 됩니다.
-
kyeng
2013.02.27 02:20
두 분 다 너무 감사합니다!! ㅠㅠ
해당 input 에 style="" 을 넣어 보세요.