This file contains 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
<?php | |
get_header(); | |
$is_page_builder_used = et_pb_is_pagebuilder_used( get_the_ID() ); | |
?> | |
<div id="main-content"> |
This file contains 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($){ | |
$("#ID").text("Your Text"); | |
$(".class").attr("placeholder", "New Value for Placeholder"); | |
$(".class").attr("title", "New Value for Title"); | |
})(jQuery); |
This file contains 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
jQuery(document).ready(function() { | |
jQuery('.et_pb_posts article > a').each(function() { | |
jQuery(this).insertAfter(jQuery(this).siblings('.post-meta')); | |
}); | |
}); |
This file contains 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
<script type-"text/javascript"> | |
jQuery(document).ready(function() { | |
jQuery('.et_pb_blog_grid article > .et_pb_image_container).each(function() { | |
jQuery(this).appendTo(jQuery(this).parent()); | |
}); | |
</script> |
This file contains 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
@media screen and (max-width:900px) | |
{ | |
.et_pb_fullwidth_slider_0 .et_pb_slide { | |
background-size: contain!important; | |
height: 250px !important; | |
} | |
} | |
@media screen and (max-width:479px) |
This file contains 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
/* Please edit the slider module and add a custom css id ukpt_slider to it. Add the following code to your css. Change the height as appropriate to match your content. */ | |
@media only screen and (min-width: 1024px) { | |
#ukpt_slider, #ukpt_slider .et_pb_slides, | |
#ukpt_slider .et_pb_slides .et_pb_slide, | |
#ukpt_slider .et_pb_slides .et_pb_slide .et_pb_container { | |
height: 450px; | |
} | |
#ukpt_slider .et_pb_slides .et_pb_slide .et_pb_container { | |
display: table; |
This file contains 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_boxed_layout #page-container, .et_fixed_nav.et_boxed_layout #page-container #top-header, .et_fixed_nav.et_boxed_layout #page-container #main-header, .et_boxed_layout #page-container .container, .et_boxed_layout #page-container .et_pb_row { | |
max-width: 960px !important; | |
} |
This file contains 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
<script type="text/javascript"> | |
(function($){ | |
$(".class-name a").attr("href", "http://www.mkrdip.me"); | |
})(jQuery) | |
</script> |
OlderNewer