WordPress/Configuring
From r00tedvw.com wiki
(Difference between revisions)
(Created page with "==SuperHero Theme== ===Featured Content=== Appearance > Content > Featured Content This was missing in the default install. Was added when the "JetPack" Plugin was installed...") |
(→Custom CSS to change some text, borders, mouse-overs) |
||
(2 intermediate revisions by one user not shown) | |||
Line 8: | Line 8: | ||
#featured-content.flexslider .slides .hentry { | #featured-content.flexslider .slides .hentry { | ||
display: none; } | 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; | ||
+ | } |
Latest revision as of 03:02, 7 October 2014
Contents |
[edit] SuperHero Theme
[edit] Featured Content
Appearance > Content > Featured Content
This was missing in the default install. Was added when the "JetPack" Plugin was installed
[edit]
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; }
[edit] 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; }