@media screen and (max-width: 600px) {
.custom-header-class {
display: none;
}
}
]]>
add_action( 'after_setup_theme', 'remove_custom_header', 11 );
function remove_custom_header() {
$GLOBALS['custom_image_header'] = 'kill_theme_features';
}
class kill_theme_features {
function init() {return false;}
}
Maybe someone can recommend a nice mobile theme that I can customize? Instead of me wasting time on trying to convert this one to mobile
]]>