我想要改变搜索栏的样式:
<code><div class="searchbase input-group animated trans" id="searchbase">
<input type="text" placeholder="<?php _e(_l('Searching...'));?>" class="form-control" id="squery" value="<?php _e($querysearch);?>" data-type="<?php _e(vars('g','type')->v);?>" data-bind="<?php _e(vars('g','bind')->v);?>">
<span class="input-group-btn">
<button class="btn btn-warning searchbutton" type="button" onclick="runsearch()"><?php _e(_l('Search'));?></button>
</span>
</div></code>
到这一个:
http://cssdeck.com/labs/0chmqae2
但无法弄清楚在输入您想要查找的内容时如何使其可搜索。我不认为它只是简单地改变css就容易了吗?
答案 0 :(得分:0)
听起来像是在询问如何将您的功能与其样式集成。
<div class="field" id="searchform">
<input type="text" id="squery" placeholder="<?php _e(_l('Searching...')); ?>" value="<?php _e($querysearch); ?>" data-type="<?php _e(vars('g','type')->v); ?>" data-bind="<?php _e(vars('g','bind')->v); ?>">
<button type="button" onclick="runsearch()" id="search"><?php _e(_l('Search')); ?></button>
</div>