wolfazor
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Linking a Site-Title Background ImageThe code was moderated because it was more than 10 lines of code. You’ll have to use pastebin.
Forum: Themes and Templates
In reply to: Linking a Site-Title Background ImageMy bad… it would more than likely look like this:
<h1 id=”site-title”> title=<?php bloginfo(‘name’); ?> rel=”home”><span><?php bloginfo(‘name’); ?></span></h1>
I’m sure you’ll find it. 🙂
Forum: Themes and Templates
In reply to: Linking a Site-Title Background ImageOh no, sorry. You’d have to edit the header.php file under Appearance -> Editor.
Look for this:
`<h1 id=”site-title”><a href=”http://www.criticspeak.com” title=”Critic Speak” rel=”home”><span>Critic Speak</span></a></h1>’And replace it with this:
<a href="http://www.criticspeak.com" title="Critic Speak" rel="home"><h1 id="site-title"><span>Critic Speak</span></h1></a>Hope that helps!
Forum: Themes and Templates
In reply to: Linking a Site-Title Background ImageIn order to get the hyperlink working, I would have thought that you’d have to do something like this:
<a href="http://www.criticspeak.com" title="Critic Speak" rel="home"><h1 id="site-title"><span>Critic Speak</span></h1></a>because your negating your text-indent to hide the title text, it’s also taking away the anchor that wraps it.