Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #100138
    bdahlen
    Participant

    I am in need of help with a minor detail. I’m using the “Featured Content” function to connect to 4 different pages on my website. I’ve selected the “Page Content” content type, and also chose the “Hide Content” option in the “Display Content” menu.

    The featured images for each page display perfectly, and so does the title of each page. However, the date each page was created is displayed below the title, and I do not want that information to be visible. How do I hide the publication date for each of my four featured content sections?

    Side note: I tried using various date removal plugins with limited success. Any plugin that removed dates from my blog posts didn’t remove the dates from this featured content section. In the end, I do NOT want to remove dates from my blog posts – just on the featured content section in this theme.

    Can you help? Here’s my website if that’s helpful: http://www.briandahlen.com

    Brian

    #100272
    Mahesh
    Keymaster

    @bdahlen: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #featured-content .meta-info {
        display: none;
    }

    Regards,
    Mahesh

    #100321
    bdahlen
    Participant

    Thank you Mahresh! That worked perfectly!

    One more quick question – I love the social media menu/icons available at the top of the screen in the desktop view, however they aren’t visible in the mobile view. Is there any way to get social media connection icons/menu available in the mobile view as well?

    Thanks,
    Brian

    #100359
    Mahesh
    Keymaster

    @bdahlen: This can be done with Custom CSS. But since the menu button is on the left, it seems the social icons hide it behind, so is it okay to shift the icons to the left instead. If so, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (max-width: 990px){
        .site-header .social-networks {
            display: block;
            right: unset;
            line-height: 37px
        }
    
        .site-header .social-networks li a {
            width: 37px;
            height: 37px;
            line-height: 37px;
        }
    }

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Featured Content Date Issue’ is closed to new replies.