Viewing 6 replies - 1 through 6 (of 6 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    One solution; you could use CSS to hide these titles, but not actually deleting them.

    Andrew Nevins is correct. Removing the page titles would make for really bad SEO. far better to position them offscreen using CSS if you absolutely have to.

    remove the below code in page.php:

    <h1 class="entry-title noinfo"><?php the_title(); ?></h1>

    As I said above, removing the page title makes for terrible SEO.

    Seeing as i am still a newby ?? hahaha esmi and Andrew Nevins are actually correct so the best way would be to change the below in style.css:

    h1.entry-title,
    h1.archive-title {
    	color: #333;
    	font-family: "Dosis", Arial, Helvetica, Geneva, sans-serif;
    	font-size: 2.2em;
    	font-size: 28px;
    	font-weight: 200;
    	line-height: 1.25em;
    	margin: 1em 0 0.4em 0;
    	text-align: center;
    	text-indent: -9999px;
    }
    Thread Starter schweppits

    (@schweppits)

    Thanks, All! I will attempt to change the CSS… I’m a newbie too, so this will take me a little time to figure out. ^_^

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Theme: Origami] Is there a way to delete auto-titles on pages?’ is closed to new replies.