我正在尝试将一些输入元素更改为具有背景图像。为此,我尝试了所有这些但没有成功:
1)编辑并在front.css
末尾/components/com_rsform/assets/css
添加此代码:
.rsform-submit-button {
display: block;
}
input#continuar {
background-image: url("../images/boton_continuar.png");
width: 250px;
height: 70px;
}
当然图像存在于/components/com_rsform/assets/images
2)Properties > CSS and Javascript
在管理员端的RSForm Pro的表单中添加代码:
.rsform-submit-button {
display: block;
}
input#continuar {
background-image: url("../images/boton_continuar.png");
width: 250px;
height: 70px;
}
以上都不起作用,我该如何处理?