Hello,
Acctually I like my Wordpress Theme but I just want to change the Title name design of it. The question is how to change the 'Design' of the Title?
Here's the design.
Printable View
Hello,
Acctually I like my Wordpress Theme but I just want to change the Title name design of it. The question is how to change the 'Design' of the Title?
Here's the design.
Take a look at the page source code:
Your title is in the h1 tag. So, if you want to change how it looks, either edit the properties of the h1 tag in your CSS or create a new tag and put your title in the new tag.Code:<h1 id="site-title">
<span>
<a href="http://mystic-tattoo-art.com/" title="Mystic-Tattoo-Art.com" rel="home">Mystic-Tattoo-Art.com</a>
</span>
</h1>
Remove the <span> tag from inside the <h1> tag, it is good to have less tags.
Hence, the HTML code could be like:
And style to the title can be given via following CSS code:Code:<h1 id="site-title">
<a rel="home" title="Mystic-Tattoo-Art.com" href="http://mystic-tattoo-art.com/">
Mystic-Tattoo-Art.com
</a>
</h1>
I hope this helps. :)Code:#site-title {
/* Styling code here */
}
#site-title a {
/* Styling code here */
}