0

我在我的 wordpress 网站上添加了一个搜索框,但由于 wordpress 中有很多默认样式,我似乎无法让机器人框和提交按钮对齐。

目前提交按钮开始比我的搜索框高一点,虽然我没有为我的按钮指定任何边距或填充..

该网站在这里在线;http://sennheiser-apart.com

这些是我目前在我的子主题的 css 文件中搜索内容的 css 行。

button {
    border:none;
    padding:6px;
}

input {
    height:28px;
    border:none;
}

input[type="submit"]{
    border:none;
    background-color:#00AFDD;
    height:28px;
    color:#fff;
    font-size:18px;
    margin:0px;
}

input[type="submit"]:hover{
    background-color:#ADAFB2;
}

即使在我的页面上搜索并在 wordpress 使用的其他文件中寻找一行样式也无济于事,我只是找不到导致这种情况的原因。有人有线索吗?我怎样才能解决这个问题?

4

1 回答 1

5

无需过多关注细节,您可以将其添加到<form>-element:

padding: 5px 0 0 0;

and to both <input>-elements add:

vertical-align: top;

This should do the trick.

于 2013-09-10T16:43:14.800 回答