WordPress/Configuring
From r00tedvw.com wiki
Contents |
SuperHero Theme
Featured Content
Appearance > Content > Featured Content
This was missing in the default install. Was added when the "JetPack" Plugin was installed
Post title/Featured image caption
http://en.forums.wordpress.com/topic/superhero-theme-can-i-get-rid-of-the-featured-image-caption
After adding the "featured" tag to an image post, it would appear in the header, but with the post title in a little white box. To get rid of the post title, active the "Custom CSS" feature from Jetpack and add the following:
#featured-content.flexslider .slides .hentry {
display: none; }
Custom CSS to change some text, borders, mouse-overs
.widget {
border-bottom: 5px solid #1e4a66;
}
.widget #searchsubmit {
background: #d4d4d4;
}
.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget h5,
.widget h6 {
color: #1e4a66;
}
.widget:hover .widget-title {
color: #ea5449;
}
.widget * {
color: #888;
}
.widget a:visited,
.widget a {
color: #ea5449;
}
.widget a:hover {
color: dodgerblue;
}
/*
color: #818181;
font-size: .8em;
*/
.main-navigation a {
color: #ea5449;
display: block;
font-size: 1.3em;
font-family: impact;
padding: 3px 20px;
text-decoration: none;
}