• Resolved JamesObZ

    (@jamesobz)


    Hi,

    If you look at the home page of my site here:
    https://keyword-elite-reviewed.com/

    From using firebug you will see that the title of my page is used in the following code:
    <h2 class=”entry-title”>Keyword Elite Reviewed!</h2>

    My problem is that i want this title to use the <h1> tags. How do i edit this? What file should I be amending?

    Many thanks,
    James

Viewing 3 replies - 1 through 3 (of 3 total)
  • Perhaps you want to check out your themes style.css file?

    change it in your template;
    it is in page.php:

    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    					<?php if ( is_front_page() ) { ?>
    						<h2 class="entry-title"><?php the_title(); ?></h2>
    					<?php } else { ?>
    						<h1 class="entry-title"><?php the_title(); ?></h1>
    					<?php } ?>
    Thread Starter JamesObZ

    (@jamesobz)

    Hi,

    Now fixed, thank you very much!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Please advise on simple question’ is closed to new replies.