Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #99338
    wouwonline
    Participant

    Hi, the headers (h1) are clickable on the pages. I don’t want that. Is that possible in Custom CSS?
    thanks!

    #99345
    Mahesh
    Keymaster

    @wouwonline: Please post in your site url. And please specify which H1 you mean?

    Regards,
    Mahesh

    #99400
    wouwonline
    Participant

    Hi, its for example on http://www.vakantiehuis-liesen.nl/vakantiehuis
    The header of the page is clickable. Its on all pages.

    #99421
    Mahesh
    Keymaster

    @wouwonline: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then copy content-page.php file from parent theme folder to your child theme folder. And edit the the file. Go to line 18 and replace:
    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catch-kathmandu' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    with the following:
    <h1 class="entry-title"><?php the_title(); ?></h1>

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘H1 is clickable on pages’ is closed to new replies.