2nd image from this link - About my Armadillo header text

Sorry I missed your reply (thanks for the DM to remind me)

I think I have everything you requested. I’ve combined it all into a single chunk so just copy this and replace what you had before:

/* Place spacing between each section (Categories, Archives, Tags) so they don’t appear so close. */
div#armadilloBlogNav>* {
    padding-bottom: 25px;
}

/* Place a header text (Categories) above the text Place a header text (Categories) above the text  */
div#blog-categories:before {
    content: "Categories";
    display: block;
    font-size: 1.3rem;
    padding-bottom: .5rem;
}

/* Place a header text (Archives) above the text  */
div#blog-archives:before {
    content: "Archives";
    display: block;
    font-size: 1.3rem;
    padding-bottom: .5rem;

}

/* Place a header text (Tags) above the text */
ul.blog-tag-cloud:before {
    content: "Tags";
    display: block;
    font-size: 1.3rem;
    padding-bottom: .5rem;
}

/*  align the ordered list below in a more neat alignment  */
ul.blog-tag-cloud {
    list-style-type: none;
    padding-inline-start: 0;
}

/* remove space between each blog post and add border */
.blog-entry {
    border: 1px solid darkgrey;
    margin-bottom: 0.5rem;
    padding: 1rem;
}

/* Create a RSS header */
#blog-rss-feeds:before {
    content: "RRS";
    display: block;
    font-size: 1.3rem;
    padding-bottom: .5rem;
}

/* Make filed in same color as tags */
span.blog-entry-category {
    Color: rgba(254, 135, 135, 1.00);
}
1 Like