• Resolved mbablus84

    (@mbablus84)


    Hey guys, in my website https://teckalacarte.com I tried to remove the dates and I did this.

    .entry-date {
    display:    none;
    }

    After that what I am seeing is the details are coming as a bit weird. The details now comes as “In categories By Author / /Leave a comment”.

    What is annoying is the two slashes after the Author name. I am willing to remove one of them and tried the below code but does not work.

    .meta-sep {
    display: none;
    }

    Even I have tried this as well but no luck.

    .entry-meta-bottom .entry-meta-sep {
    display: none;
    }

    Please advise how can I achieve this.

Viewing 5 replies - 1 through 5 (of 5 total)
  • .entry-date {
    display: none !important;
    }

    or

    span.entry-date {
    display: none !important;
    }

    or

    p.p-meta span.entry-date {
    display: none !important;
    }

    or

    Thread Starter mbablus84

    (@mbablus84)

    Yes I did that already. Removing the date part is done but what I want to do is after removing the dates there are two slashes showing up after the author name and I want either to keep one of them or get them removed totally so that they do not show up at all. So Either to remove both of them or to remove one of them if you could help?

    Ok, best solution, Edit your Post Meta Data Section in your template, and modify it.

    Thread Starter mbablus84

    (@mbablus84)

    What is the file name? Where do I modify it?

    Thread Starter mbablus84

    (@mbablus84)

    Gotcha, it lies in the same folder.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove the slash after author name’ is closed to new replies.