Entree
From IThemes Codex
(Difference between revisions)
m |
(How to remove dates in posts on Menu and Locations pages) |
||
| Line 11: | Line 11: | ||
Watch http://sridharkatakam.com/videos/ithemes/builder/editing-widget-title-bg/ | Watch http://sridharkatakam.com/videos/ithemes/builder/editing-widget-title-bg/ | ||
| − | = | + | = How to remove dates in posts on Menu and Locations pages = |
| + | |||
| + | [[File:Entree-dates-removal-before.jpg|800px|thumb|none|Before]] | ||
| + | |||
| + | [[File:entree-dates-removal-after.jpg|800px|thumb|none|After]] | ||
| + | |||
| + | Add the following at the end of child theme's style.css: | ||
| + | |||
| + | <pre class="brush:css;"> | ||
| + | .blogroll-loop-content .entry-meta.date .day, .blogroll-loop-content .entry-meta.date .month, .blogroll-loop-content .entry-meta.date .year { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | .blogroll-loop-content .entry-meta.date { | ||
| + | height: 30px; | ||
| + | } | ||
| + | |||
| + | .blogroll-loop-content .entry-content { | ||
| + | padding-top: 50px; | ||
| + | } | ||
| + | </pre> | ||
= Item 4 = | = Item 4 = | ||
Latest revision as of 06:05, September 14, 2011
Contents |
Video walkthrough
The video below briefly goes over how Entree demo site is set up.
Changing the color of widget-title-bg.png, the background image of widget titles
Watch http://sridharkatakam.com/videos/ithemes/builder/editing-widget-title-bg/
How to remove dates in posts on Menu and Locations pages
Add the following at the end of child theme's style.css:
.blogroll-loop-content .entry-meta.date .day, .blogroll-loop-content .entry-meta.date .month, .blogroll-loop-content .entry-meta.date .year {
display: none;
}
.blogroll-loop-content .entry-meta.date {
height: 30px;
}
.blogroll-loop-content .entry-content {
padding-top: 50px;
}