Is it possible to get other category blog pages to display this way in pages other than the home page?
You edit menu which type is category/featured, you set Page Class (in Page Display Options section) is “ ja-blazes-blog” (no quote, and have a space at begin of text
And you replace the code from /templates/ja_blazes/css/template.css
div.ja-blazes-blog div.article-tools dd.create {
font-family: Arial,sans-serif;
position: absolute;
top: 5px;
left: 0;
width: 110px;
background: none;
padding: 0 0 0 20px;
}
with
div.ja-blazes-blog div.article-tools dd.create, div.ja-blazes-blog div.article-tools dd.published {
font-family: Arial,sans-serif;
position: absolute;
top: 5px;
left: 0;
width: 110px;
background: none;
padding: 0 0 0 20px;
}
Replace
div.ja-blazes-blog div.article-tools .create .month-year {
display: block;
float: left;
text-transform: uppercase;
}
with
div.ja-blazes-blog div.article-tools .create .month-year, div.ja-blazes-blog div.article-tools .published .month-year {
display: block;
float: left;
text-transform: uppercase;
}
Replace
div.ja-blazes-blog div.article-tools .create .month-year span {
display: block;
}
with
div.ja-blazes-blog div.article-tools .create .month-year span, div.ja-blazes-blog div.article-tools .published .month-year span {
display: block;
}