/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


} 
/* Chuyển H5 thành H3 */
add_action('wp_footer', 'replacePostTitles');

function replacePostTitles() {
?>
<script>
document.addEventListener("DOMContentLoaded", function() {
var postTitles = document.querySelectorAll('.post-title.is-large');

postTitles.forEach(function(title) {
var h3Title = document.createElement('h3');
h3Title.innerHTML = title.innerHTML;
title.parentNode.replaceChild(h3Title, title);
});
});
</script>
<?php
}

/* END Chuyển H5 thành H3 */
