Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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,
    Marsha

    #632881

    Hey Marsha,

    Try adding this too:

    .single-post span.blog-categories, 
    .single-post .slide-meta {
    display: none;
    }

    Best regards,
    Josue

    #633327

    Good 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.

    #633705

    Hi!

    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,
    Ismael

    #633747

    Thanks 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!

    #634869

    Hi,

    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,
    Ismael

    #636548

    Thanks 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 :-)

    #636613

    Glad to help :)

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.