This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ul#menu-main-navigation > li > a { | |
pointer-events: none; | |
} | |
h4 { | |
margin-bottom: 1em; | |
} | |
.wrapper { | |
max-width: 1100px; | |
margin: 0 auto; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body.all-products #main-content .product-box { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
margin: 0 5px 15px!important; | |
} | |
.category-feature { | |
width: 100%; | |
min-width: 445px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function child_theme_setup() { | |
add_image_size( 'post-index-thumb', 370, 278, true ); | |
add_image_size( 'post-grid-thumb', 280, 280, true ); | |
add_image_size( 'post-featured-img', 870, 580, true ); | |
add_image_size( 'portfolio-featured-img', 761, 456, true ); | |
} | |
add_action( 'after_setup_theme', 'child_theme_setup', 11 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#main-content .container { | |
max-width: 960px; | |
} | |
.entry-content { | |
color: #333; | |
} | |
.about-top { | |
background: -moz-linear-gradient(top, rgba(255,255,255,.4) 0%, rgba(255,255,255,1) 80%), url(http://cs.randjsc.com/wp-content/uploads/2017/03/istock-2200px-opt.jpg); | |
background: -webkit-linear-gradient(top, rgba(255,255,255,.4) 0%,rgba(255,255,255,1) 80%), url(http://cs.randjsc.com/wp-content/uploads/2017/03/istock-2200px-opt.jpg); | |
background: linear-gradient(to bottom, rgba(255,255,255,.4) 0%,rgba(255,255,255,1) 80%), url(http://cs.randjsc.com/wp-content/uploads/2017/03/istock-2200px-opt.jpg); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.et-social-icons li { | |
margin: 0 10px; | |
} | |
.et_pb_team_member_image { | |
filter: grayscale(0.8) hue-rotate(30deg)!important; | |
} | |
.et_pb_team_member_image { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.vc_carousel-slideline-inner .vc_inner img { | |
margin: 0 auto!important; | |
display: block; | |
} | |
/*.df-footer { | |
display: none; | |
}*/ | |
.df-footer .siteinfo p { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
$('#NationalPhotoMonth_submitButton').click(function() { | |
if(!$('#NationalPhotoMonth_Field_48').is(':checked')){ | |
alert('Not Checked'); | |
return false; | |
} | |
if($('#NationalPhotoMonth_Field_48').is(':checked')){ | |
alert('Checked - GO'); | |
return true; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
$('#NationalPhotoMonth_submitButton').click(function(e) { | |
e.preventDefault(); | |
if(!$('#NationalPhotoMonth_Field_48').is(':checked')){ | |
alert('You must agree to the term and conditions.'); | |
return false; | |
} | |
if($('#NationalPhotoMonth_Field_48').is(':checked')){ | |
return true; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
$("#NationalPhotoMonth_submitButton").click(function(event) { | |
if (!$("#NationalPhotoMonth_Field_48").is(":checked")) { | |
event.stopImmediatePropagation(); | |
alert('You must agree to the Terms and Conditions!'); | |
} | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
$("#UserContentSubmissionForm_submitButton").click(function(event) { | |
if (!$("#UserContentSubmissionForm_Field_47").is(":checked")) { | |
event.stopImmediatePropagation(); | |
alert('You must agree to the Terms and Conditions!'); | |
} | |
}); | |
}); |