This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
Styling Webforms with CSS and HTML
Hide field
[data-id="field external id"] {
display: none;
}
<!--NeedCopy-->
Button styling
button[type="submit"] {
background-color: #b6fbfb;
color: #000;
border: 2px solid #b6fbfb; /* Border matches the button color */
transition: background-color 0.3s ease; /* Smooth transition effect */
}
button[type="submit"]:hover {
background-color: #a0e0e0; /* Slightly darker shade when hovered */
border-color: #a0e0e0; /* Matching border color */
}
<!--NeedCopy-->
Change Submit Button Shape
button[type="submit"] {
border-radius: 999px;
padding: 10px 30px; /* optional: better visual spacing */
}
<!--NeedCopy-->
Change Help Text Color
.help-block {
color: #ff9933; /* Replace with your desired color */
}
<!--NeedCopy-->
Fix Mobile Sizing and Focus Zoom Issue
div.container {
width: 100% !important;
}
form#webform.webforms {
width: 100% !important;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
input[type="email"]:hover,
input[type="number"]:hover,
input[type="search"]:hover,
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="url"]:hover,
textarea:hover,
select:hover{font-size: initial;}
}
@media (min-width: 768px) {
input[type="email"]:hover,
input[type="number"]:hover,
input[type="search"]:hover,
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="url"]:hover,
textarea:hover,
select:hover{font-size: inherit;}
}
<!--NeedCopy-->
Remove Phone/Email Type Select Box
span.input-group-addon {
display: none;
}
div.input-group {
display: block;
}
select {
display: none;
}
button.field-add-another {
margin-top: 5px;
}
.input-group .form-control:last-child {
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
<!--NeedCopy-->
Remove ‘Add another’ from All
button.field-add-another {
display: none;
}
.input-group .form-control:last-child {
margin-bottom: 15px;
}
Remove 'Add another' from Phone and Email Only
.webforms__field[data-id="phone"] .field-add-another,
.webforms__field[data-id="email"] .field-add-another {
display: none;
}
<!--NeedCopy-->
Logo and Title
<div style="text-align:center;padding:0px 0;">
<img style="height:75px;vertical-align:middle;margin-bottom:20px;" src="LINK TO IMAGE?format=1500w;" />
<h1 style="margin: 0;">CONTACT FORM</h1>
<p style="font-size:24px;color:#333;max-width:600px;margin-top:20px;">
Please fill out the details below and we'll get back to you shortly.
</p>
</div>
<!--NeedCopy-->
Redirect Page
<div style="text-align:center; padding: 20px 0;">
<img style="height:75px; vertical-align:middle; margin-bottom: 10px;" src="LINK TO IMAGE?format=1500w" alt="Progress Podio Logo" />
<br />
<span style="font-size: 40px;"><b>SUBMISSION MESSAGE.</b></span>
</div>
<!--NeedCopy-->
CSS EXAMPLE
button[type="submit"] {
background-color: #5CE500;
color: #000;
border: 2px solid #5CE500;
transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
background-color: #43A700;
border-color: #43A700;
}
button.field-add-another {
display: none;
}
.input-group .form-control:last-child {
margin-bottom: 15px;
}
span.input-group-addon {
display: none;
}
div.input-group {
display: block;
}
select {
display: none;
}
button.field-add-another {
margin-top: 5px;
}
.input-group .form-control:last-child {
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
<!--NeedCopy-->
This Preview product documentation is Citrix Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Citrix Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Citrix product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.