我需要在工作搜索框中更改样式以匹配主题。
<div class="input-group">
<input type="text" class="form-control" placeholder="Search">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div>
<!-- /input-group -->
<div class="search_box">
<form id="form_search" name="form_search" method="get" action="<?php echo site_url();?>">
<input type="text" name="s" id="search_top" />
<input type="button" name="btn1" id="btn_top" value="" />
</form>
</div>
&#13;
第一个div是我需要的样式,第二个是工作搜索框。
分别是目前每个人的样子: http://gyazo.com/ecd1b696f723879d5512588b1d384017
答案 0 :(得分:0)
根据您的要求管理父容器的宽度,但是在显示时获取搜索栏:检查链接的小提琴:
https://jsfiddle.net/happy2deepak/d4jad6ah/
<div class="input-group">
<input type="text" class="form-control input-lg" placeholder="Search">
<span class="input-group-btn">
<button type="button" class="btn btn-dark btn-lg">Go!</button>
</span>
</div>