- How do I ensure the site title and tagline only appear in the browser window/tab and not on the frontpage?
some adjustments to style.css of your theme:
#site-title, #site-description { text-indent: -9999px; }
if you add this to the end of style.css, the title snd description should be off the screen.
- alternatively, you can also try:
#site-title, #site-description { visibility: hidden;; }
or
#site-title, #site-description { display: none; }
Seeing the code I added to add the site header image wasn't valid (although the image did show up strangely enough), what is the proper way to do it?
a possible valid code to show a header image, linked to the front page, would be:
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="http://www.martijnboersma.com/wp-content/uploads/2011/03/Siteheader2.jpg" alt="" /></a>