Okay
  Public Ticket #3434961
Remove category from Recent Posts widget
Closed

Comments

  •  1
    cariirwin started the conversation

    Hi there,

    I tried looking through other tickets but have been unsuccessful at removing the category from the Recent Posts widget (list with featured first row). Can you help with some CSS? 

    Also, the phone number on the contact page shows on desktop but not on my mobile (iPhone 11). It only shows after I touch the area on my phone where it's supposed to be. No idea why!!
    http://charlottei.sg-host.com/contact/

    Thanks in advance!

  •  279
    Noah replied

    Hi there,

    1) You can remove the category with this bit of CSS:

    .blog-recent[data-style=list_featured_first_row] .meta-category{
        display:none;
    }
    

    add it to salient \ general settings - css script related - custom css code.

    2) The phone number on that contact page was present on iphone 11 in chrome and on safari when we tested it on our end. Are you still having this issue?

    Thanks.

  •  1
    cariirwin replied

    Thank you so much, that worked. I was able to solve the phone issue by copying and pasting the same content from another section of the site. Not sure why it worked, but it did! I think it was somehow due to my phone trying to make it a link.

    Thanks again,
    Cari



  •  1
    cariirwin replied

    One more question--how can I hide the category on the single blog page? I'm using variable height meta overlaid: http://charlottei.sg-host.com/example-post/

    Thanks in advance!

  •  279
    Noah replied

    Hi there,

    You can remove the post category from that header using this CSS:

    .single #page-header-bg #single-below-header span.meta-category{
        display:none;
    }
    

    Cheers.

  •  1
    cariirwin replied

    Terrific, thank you