本文目录一览:
- 1、dede首页搜索框大小如何更改
- 2、怎么删除DEDECMS首页栏目下面的文章搜索框
- 3、织梦模板怎么添加搜索框
dede首页搜索框大小如何更改
你打开下 /templets/default/style/dedecms.css
查找到
.w963 .search{
padding-left:10px;
line-height:32px;
}
修改下line-height:32px;就行了 想高点就加下就行
如下:
.w963 .search{
padding-left:10px;
line-height:52px;
}
怎么删除DEDECMS首页栏目下面的文章搜索框
那个空白是样式没删除,你看下你删除的那段代码的div 对应的类,然后找到在css里面找到他,删除掉就行
织梦模板怎么添加搜索框
添加搜索框代码如下:
form method="post"
action="{dede:global.cfg_basehost/}/plus/search.php" name="formsearch"
class="search"input type="hidden" value="" name="domains"input type="hidden" value="0" name="kwtype"
table border="0" cellspacing="0" cellpadding="0"
tr
td width="65" /td
td width="146" valign="middle"input class="keywords" name="q" type="text" id="search" value="请输入搜索内容..."
input type="hidden" value="titlekeyword" name="searchtype"
/td
td width="5" /td
td button type="submit" class="submit"/button /td
/tr
/table
/form
二、
form method="post" action="{dede:global.cfg_basehost/}/plus/search.php" name="formsearch" class="search"input type="hidden" value="" name="domains"input type="hidden" value="0" name="kwtype"
table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"
tr
td width="65"nbsp;/td
td width="146" valign="middle"
input class="keywords" name="q" type="text" id="search" value="请输入搜索内容..." onFocus="if(this.value=='请输入搜索内容...'){this.value='';}" onBlur="if(this.value==''){this.value='请输入搜索内容...';}"
input type="hidden" value="titlekeyword" name="searchtype"
/td
td width="5"nbsp;/td
td button type="submit" class="submit"/button /td
/tr
/table
/form