Tandil theme – How To: Update the Header Font
-
Here’s my blog as a reference Jeremy Bailey’s Blog
I updated my Header to include the picture of me. The header picture is located in your themes /images folder.
I updated the Stylesheet (Style.css) file:
#header a:hover { color: #0101DF; } (default was #ff4444)
#header h1 a{
font-family: Arno Pro Bold Italic; (removed all other font-families)
font-weight: 100;
color: #e7dede;
text-decoration: none;
font-size: 52px; (default was 46px)
letter-spacing: 1px;
}#header h2{
font-family: Myriad, “Myriad Pro”, Arial, Georgia, Times New Roman, Times, serif;
padding: 1px 0 1px 10px;
font-weight:110;
color: #e7dede;
font-size: 24px; (default was 16px)
letter-spacing: 1px;
}In the Header (header.php) file, I put a space between the title and subtitle. The code for a space is the “br” in brackets (<>), I had to remove the brackets in the code otherwise you would only see a space in this post.
br
<h1>/”><?php bloginfo(‘name’); ?></h1>
br
<h2><?php bloginfo(‘description’); ?></h2>Jeremy
- The topic ‘Tandil theme – How To: Update the Header Font’ is closed to new replies.