Information Technology Reference
In-Depth Information
IV
#nav-wrap2 ul#nav li a span{
display: block;
margin-top: 6px;
padding: 0 8px;
}
There is some very cool work on this navigation bar.
Main Content
This section covers the formatting of the essential component of your blog, the post. It includes
how post titles look, the font, and how tags appear—both on the main page and on the page where
the permalink points.
/* post */
.post, .page{
margin: 1em 0;
}
Proving yet again that WordPress is a global phenomenon, Arclite allows several Asian font-families
their place in the sun. Jamrul is a Bengali-language font, Garuda is Thai, and Kalimati is Nepali.
You'll find references here and in other locations in the CSS.
h3.post-title, h2.post-title{
font-family: “Union”, “Lucida Grande”, “Lucida Sans Unicode”, Arial, Helvetica, Sans,
FreeSans, Jamrul, Garuda, Kalimati;
margin: 0;
padding: .8em 0 .1em 0;
font-size: 180%;
font-weight: bold;
letter-spacing: -0.04em;
text-shadow: #fff 1px 1px 1px;
}
Titles for posts can be h2 or h3 headings, and can also change color when you hover the mouse.
h3.post-title a, h2.post-title a{
text-decoration: none;
color: #000;
}
h3.post-title a:hover, h2.post-title a:hover{
color: #df2e56;
}
You can see here how easy it is to define a consistent look for all of your posts, with some flexibility
for your visitors' operating system and preferred browser.
Search WWH ::




Custom Search