Wondering if there is a way to delete the Automatic Page titles that show up in the body of each page (mimicking the Page title in the menu)? Or if not delete, is there a way to change the font?
Thanks!
Wondering if there is a way to delete the Automatic Page titles that show up in the body of each page (mimicking the Page title in the menu)? Or if not delete, is there a way to change the font?
Thanks!
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 :P 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;
}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. ^_^
You must log in to post.