Ok, please do the following things:
in the stuff.css file please replace the block starting with:
- Code: Select all
/* Information form */
to:
- Code: Select all
/* Information form */
.gk-information { padding: 28px 0; }
.gk-information { overflow: hidden; }
.gk-information > span,
.gk-information > input {
float: left;
margin: 0 0 0 2%;
width: 19%;
}
.gk-information strong {
color: #0f1725;
float: left;
font-size: 12px;
font-weight: bold;
line-height: 1.2;
padding: 5px 20px 5px 70px;
position: relative;
width: 16%;
}
.gk-information strong:before {
color: #d1d1d1;
content: 'f';
font-family: university-pixellove;
font-size: 40px;
font-weight: 300;
left: 0;
position: absolute;
top: -5px;
}
.gk-information input[type="submit"] {
background: #52b5fa;
border: none;
}
.gk-information input[type="submit"]:active,
.gk-information input[type="submit"]:focus,
.gk-information input[type="submit"]:hover { background: #fa7252; }
The above code will adjust for the Contact Form 7 output.
Then please create a new form with the following structure:
- Code: Select all
<div class="gk-information">
<strong>Get info based on<br /> your study lavel</strong> [text* your-name placeholder "Full name"][text* text-796 placeholder "Your education level"][email* your-email placeholder="Your e-mail"][submit "Request information"]
</div>
Value
text-796 will probably change to other value - you have to create a new field for the education level - please look at the attachment
new-field.
Then please modify the e-mails like in the attachment
emails.
When you save your form you have to copy the form shortcode to the header bottom text widget. In my case it was:
- Code: Select all
[contact-form-7 id="2336" title="Contact form 1"]
The last step are small changes in the mobile CSS.
desktop.small.css - please replace the following code:
- Code: Select all
.gk-information > div > strong {
width: 20%;
}
.gk-information > div > input {
width: 18%;
}
to:
- Code: Select all
.gk-information strong {
width: 20%;
}
.gk-information span {
width: 18%;
}
tablet.css please replace:
- Code: Select all
.gk-information {
padding: 12px 0;
}
.gk-information > div > strong {
font-size: 11px;
padding: 5px 10px 5px 50px;
}
.gk-information > div > input {
margin-left: 0.5%;
}
.gk-information > div > input {
width: 18%;
}
.gk-information > div > input[type="submit"] {
width: 22.5%;
}
to:
- Code: Select all
.gk-information {
padding: 12px 0;
}
.gk-information strong {
font-size: 11px;
padding: 5px 10px 5px 50px;
}
.gk-information span {
margin-left: 0.5%;
}
.gk-information span {
width: 18%;
}
.gk-information input[type="submit"] {
width: 22.5%;
}
small.tablet.css - please replace:
- Code: Select all
.gk-information > div > strong {
padding: 30px 0 30px 50px;
width: 33.333333%;
}
.gk-information > div > strong:before {
top: 20px;
}
.gk-information > div input {
margin-bottom: 1%;
margin-left: 1%;
width: 32.333333%!important;
}
to:
- Code: Select all
.gk-information strong {
padding: 30px 0 30px 50px;
width: 33.333333%;
}
.gk-information strong:before {
top: 20px;
}
.gk-information span,
.gk-information > input {
margin-bottom: 1%;
margin-left: 1%;
width: 32.333333%!important;
}
mobile.css please replace:
- Code: Select all
.gk-information > div > strong {
width: 100%;
}
.gk-information > div input {
width: 99%!important;
}
to:
- Code: Select all
.gk-information strong {
width: 100%;
}
.gk-information input,
.gk-information span {
width: 99%!important;
}