Skip to content

Commit

Permalink
update some hardcoded css
Browse files Browse the repository at this point in the history
  • Loading branch information
lloan committed Aug 1, 2024
1 parent ae8198c commit 02d9fc3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
12 changes: 6 additions & 6 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2259,24 +2259,24 @@ header {
max-width: 225px;
}

#wpcf7-f65-o1 input[name="userEmail"],
#wpcf7-f65-o1 input[name="userName"],
#wpcf7-f65-o1 input[name="userSubject"] {
.wpcf7 input[name="userEmail"],
.wpcf7 input[name="userName"],
.wpcf7 input[name="userSubject"] {
max-width: 225px;
}

#wpcf7-f65-o1 input[type="submit"] {
.wpcf7 input[type="submit"] {
max-width: 100%;
line-height: 0;
font-family: 'Raleway', sans-serif;
color: #FFFFFF;
}

#wpcf7-f65-o1 .wpcf7-response-output {
.wpcf7 .wpcf7-response-output {
border-color: #9DAF6E;
}

#wpcf7-f65-o1 .wpcf7 form.sent .wpcf7-response-output {
.wpcf7 form.sent .wpcf7-response-output {
border-color: #9DAF6E;
margin: 0 auto;
}
Expand Down
9 changes: 7 additions & 2 deletions template-apply.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,13 @@
<div class="col-12 col-lg-6 mt-5">
<div class="w-100">
<img class="careers-logo" src="<?php echo get_template_directory_uri(); ?>/assets/images/logo/text-logo-horizontal-black.svg"/>

<?php echo do_shortcode('[contact-form-7 id="be17b9e" title="Job Application"]')?>
<?php
if ( is_prod() ) {
echo do_shortcode( '[contact-form-7 id="4f1303f" title="Job Application"]' );
} else {
echo do_shortcode( '[contact-form-7 id="be17b9e" title="Job Application"]' );
}
?>
</div>
</div>
</div>
Expand Down

0 comments on commit 02d9fc3

Please sign in to comment.