Replace (») Crumbs with (,) Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    Replace (») Crumbs with (,)

    kumotta
    kumotta
    Forumember


    Female Posts : 203
    Reputation : 3
    Language : English

    Replace (») Crumbs with (,) Empty Replace (») Crumbs with (,)

    Post by kumotta Tue Apr 14, 2015 10:31 pm

    how to replace  (»)  on crumbs with (,)

    Replace (») Crumbs with (,) Screen11

    i want to make like this: Forum, Desain, Teori Warna
    JScript
    JScript
    Forumember


    Male Posts : 741
    Reputation : 175
    Language : PT-BR, EN
    Location : Brazil

    Replace (») Crumbs with (,) Empty Re: Replace (») Crumbs with (,)

    Post by JScript Tue Apr 14, 2015 11:44 pm

    @kumotta
    Hello!
    There are several ways: may be via the template editing, JavaScript code, but may also be through a simple CSS!

    Try the following CSS:
    Code:

    .pun-crumbs p.crumbs {
      color: transparent;
    }
    .pun-crumbs p.crumbs > a::after {
      content: ",";
    }
    .pun-crumbs p.crumbs a span {
      margin-left: -12px;
    }

    Result:
    Replace (») Crumbs with (,) 6sY1ROP

    JS