Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1178655
    Grumpy
    Participant

    Example page is here: http://akitio.net.nz/product/akitio-t3t/

    I used this Global Custom CSS to remove the DATE on a portfolio item page:

    .x-portfolio .p-meta .entry-date {
       display: none;
    }

    Also in the Global Custom CSS I used the following to remove the AUTHOR (from Blog and Portfolio:

    .p-meta span:nth-child(1), .p-meta span:nth-child(5) {
    display: none !important;
    }

    However, a stray “/” remains in front of the CATEGORY on the Portfolio item page. How may I remove it?

    Thanks.

    #1179045
    Darshana
    Moderator

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    
    .p-meta span:nth-child(2)::after {
        display: none;
    }
    

    Hope that helps.

    #1179070
    Grumpy
    Participant

    Beautiful! Thank you!

    #1179074
    Grumpy
    Participant

    I spoke too soon. 🙂 I now seem to have a slight display problem in the blog section, where I DO want the date displayed (including the “/” separator). Any suggestions?

    See: http://akitio.net.nz/blog/

    #1179159
    Christopher
    Moderator

    Hi there,

    Please update previous code to :

    .single-x-portfolio .p-meta span:nth-child(2)::after {
        display: none;
    }

    Hope it helps.

    #1179565
    Grumpy
    Participant

    Perfect. Thank you.

    #1179864
    Christopher
    Moderator

    You’re welcome.

  • <script> jQuery(function($){ $("#no-reply-1178655 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>