Wordpress表单中的样式问题

时间:2014-01-21 15:43:23

标签: html css wordpress forms styles

这是my form! 。现在,我在“上传简历”行中有“选择文件”按钮和图例“未选择文件”。我需要'选择文件'按钮看起来像是真实的背景img和要删除的图例但我不知道如何!

此外,在上一个表单行上,“选择作业发布”的边框半径与前一个表单框的边框半径不匹配,我也无法更改该属性。

我愿意接受任何解决方案:)

“选择文件”按钮的实际CSS代码是:

input[type="file"] {
background-image: url('http://accountabletest.com/wp-content/uploads/2014/01/upload1.png')              ;
background: no-repeat;
z-index: 99999999999 !important;
}

2 个答案:

答案 0 :(得分:0)

输入尝试

input[type="file"] {
  background-attachment: scroll;
  background-clip: border-box;
  background-color: rgba(0, 0, 0, 0);
  background-image: url("http://accountabletest.com/wp-content/uploads/2014/01/upload1.png") !important;
  background-origin: padding-box;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto auto;
  color: rgba(0, 0, 0, 0);
  text-indent: -99999px;
  z-index: 2147483647 !important;
}

enter image description here

对于选择尝试:

.dropdown1 {
  background: none repeat scroll 0 0 #F8F8F8;
  border-color: rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.1);
  color: #808080;
  font-family: inherit;
  font-size: 17px;
  font-weight: 100;
  margin-bottom: 5px;
  margin-top: -22px;
  padding: 15px;
  width: 308px;
}

enter image description here

答案 1 :(得分:0)

这将仅针对按钮本身。不适用于-moz- ...但适用于chrome和safari。

使用默认样式上传文件

[file * upload-resume limit:2097152 filetypes:pdf | doc | docx id:upload-file class:upload-file]

它看起来像这样

Default Input File Button

您需要的是此代码(或者您可以根据需要进行样式化):

input[type="file"]::-webkit-file-upload-button {
    cursor: pointer;
    background-color: #ff921e;
    border: none;
    width: 150px;
    height: 30px;
    color: white;
    letter-spacing: .05em;
    font-size: 14px;
    font-weight: 300;
}

Styled Input File Button

希望它有所帮助!