-
AuthorPosts
-
May 13, 2016 at 3:26 am #631747
Hi guys,
So that blog categories do not show on my home page when I use the Blog Posts Content Element to display posts on my home page (as I have the Category as a heading above so it’s a little redundant) I have added the following Quick CSS to my theme options;
span.blog-categories, .slide-meta {
display: none;
}However, this is causing the category also not to display on the full post under the post title with the other Blog Meta Elements that I have opted to display.
I have included an article link below and credentials to my development site for you to see.
I’m no star with CSS and I’m hopeful that this can be resolved with some adaption or addition to the above.
Can you assist please?
Many thanks,
MarshaMay 16, 2016 at 12:17 pm #632881Hey Marsha,
Try adding this too:
.single-post span.blog-categories, .single-post .slide-meta { display: none; }
Best regards,
JosueMay 16, 2016 at 10:09 pm #633327Good morning Josue,
I just added that additional CSS to Quick CSS but the post is still not displaying the category. Have included details of an example in the Private Content. The category displaying between the “/ /” in this example is Partner Content.
May 17, 2016 at 12:49 pm #633705Hi!
Replace the code with the following:
.single-post .slide-meta { display: none; }
Or add this below the existing code:
.single-post span.blog-categories { display: block; }
Regards,
IsmaelMay 17, 2016 at 2:10 pm #633747Thanks for your assistance Ismael. I tried both options but I must have something else in the Quick CSS interferring.
.single .big-preview.single-big {
pointer-events: none !important;
}.news-thumb.no-news-thumb {
display: none;
}.image-overlay {
display: none !important;
}#top .fullsize .template-blog .post .entry-content-wrapper > * {
max-width: 740px;
text-align: left;
}.slide-meta-comments, .slide-meta-del {
display: none!important;
}.widget {
padding-bottom: 0!important;
}#top .news-content {
font-size: 11px;
}strong.news-headline {
font-weight: strong;
font-size: 14px;
}span.blog-categories, .slide-meta {
display: none;
}.avia-button.avia-size-medium {
font-weight: bold;
font-size: 16px;
}.ccfic a {
pointer-events: all;
}.single-post span.blog-categories,
.single-post .slide-meta {
display: none;
}.news-headline {
font-family: ‘Metrophobic’, ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
}Really not sure where I’ve gone wrong. In the Blog Layout Theme Options I have checked Author, Category and Date to display.
Sorry to be a bother but hoping that this will all make much more sense to you than I.
Thanks!
May 19, 2016 at 3:44 am #634869Hi,
You have to remove this code:
.single-post span.blog-categories, .single-post .slide-meta { display: none; }
And then replace it with the one that we suggested above:
.single-post .slide-meta { display: none; }
Best regards,
IsmaelMay 23, 2016 at 6:20 am #636548Thanks for all your help on this topic guys! I’ve decided to change my approach on the homepage but your guidance has assisted me work out what code I needed to remove to get the effect I was after. You can close this one now :-)
May 23, 2016 at 8:45 am #636613Glad to help :)
-
AuthorPosts
- You must be logged in to reply to this topic.