Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #68638

    Christian
    Moderator

    Hey Cindy,

    Please see my reply to your post http://theme.co/x/member/forums/topic/is-there-a-conflict-with-sidebar-and-visual-composer/#post-68633

    1. This is possible but would be outside the scope of our support as it will need structural additions.

    2. Can you give us a screenshot of this?

    3. Please add the code below in the Customizer > Custom > CSS.

    .entry-cover-content span {
    display:none;
    }

    Hope that helps. 🙂

    #68671

    safesite
    Participant
    This reply has been marked as private.
    #68772

    safesite
    Participant
    This reply has been marked as private.
    #69090

    Christian
    Moderator

    Hey Cindy,

    To remove the Author, please add the code below in the Customizer > Custom > CSS.

    .p-meta>span:first-child {
    display: none;
    }

    Hope that helps. 🙂

    #69298

    safesite
    Participant

    Thank you, but the author’s name is gone now from the blog posts as well. I only wanted them removed from portfolio items, is this possible? Also, how do I eliminate the date stamp on portfolio items? I still want author’s names, dates, and categories to show on blog.

    May be portfolio is not the way to set up the grid of images I have been looking to do but set it up using sliders and images instead. Is that a better option?

    Thanks,
    Cindy

    #69677

    Kory
    Keymaster

    Cindy,

    You could try targeting just the portfolio items with the following CSS:

    .x-portfolio .p-meta>span:first-child {
      display: none;
    }

    Utilizing different options is simply a matter of personal preference and experimentation. Trying different things out will help you to see what you prefer! 🙂

    Thanks.

    #70099

    safesite
    Participant

    Thank you, but how do I eliminate the date stamp on portfolio items?

    #70232

    Zeshan
    Member

    Hi Cindy,

    Please try adding the following CSS code to Customizer > Custom > CSS:

    .x-portfolio .entry-cover-content > span:last-child {
       display: none;
    }
    

    Hope this helps. 🙂

    Thank you.