Hi efratot!
You will be able to edit it in your admin page. Go to Appearance -> Editor.
– Find “single page” single.php
– find “title” somewhere in the file.
– Change from H2 to H1
thanks but i cant find “title” on my single.php.
maybe Because I use “travelify” theme.
my code looks like:
<?php
/**
* Displays the single section of the theme.
*
*/
?>
<?php get_header(); ?>
<?php
/**
* travelify_before_main_container hook
*/
do_action( ‘travelify_before_main_container’ );
?>
<div id=”container”>
<?php
/**
* travelify_main_container hook
*
* HOOKED_FUNCTION_NAME PRIORITY
*
* travelify_content 10
*/
do_action( ‘travelify_main_container’ );
?>
</div><!– #container –>
<?php
/**
* travelify_after_main_container hook
*/
do_action( ‘travelify_after_main_container’ );
?>
<?php get_footer(); ?>