• Resolved Karl Andersson

    (@swekarl)


    Is there a way to remove the dot or period (“.”) that automatically appears after the date in the Timeline Showcase block, horizontal version? There are tons of options for style and typography, but I haven’t found a way to remove the dot. I don’t want the dot.

    I’ve searched for pseudo-elements in the style sheet but the dot seems hardcoded into the plugin.

    I’ve checked the documentation and the knowledgebase.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Qode

    (@qodeinteractive)

    Hi there,

    This will be removed within the next update. However, in the meantime you could use this JS code:

    jQuery('.qi-block-timeline .qodef-e-date').each(function(){
    var text = jQuery(this).html();
    text = text.slice(0,-1);
    jQuery(this).html(text);
    })

    We hope this helped.

    Best,

    Qode

    Thread Starter Karl Andersson

    (@swekarl)

    Thanks. Never been so excited for an update! ??

    Plugin Author Qode

    (@qodeinteractive)

    Hi there,

    Thank you for your patience and feedback.

    We are here if you have any additional questions.

    Best,

    Qode

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove dot in date in Timeline Showcase block’ is closed to new replies.