• Resolved rfouquet

    (@rfouquet)


    Hello,

    I have trouble using Breadcrumb NavXT, the separator ” > ” are all at the end.
    For example, instead of having ” Home > page1 > page2 “, it show “Homepage1> > page2”

    Any idea on how to fix this ?

    Thank you.
    Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author John Havlik

    (@mtekk)

    This typically occurs when some CSS is being applied to the anchors (a tag) causing them to float one direction or the other while the main breadcrumb body (within a <div>) are not floated. I suggest using your browser’s built in inspector to look at what CSS is being applied to your breadcrumbs and modify it until you find the culprit/get the desired result.

    Thread Starter rfouquet

    (@rfouquet)

    Hello John,
    Your reply was very helpful, you were right, it was CSS bug on the “a tag”. Maybe conflict with my theme or plugin CSS… mess with float and display block.

    Anyway, I fixed my isue like this :

    .rit-breadcrumb a {
    font-size: 12px;
    font-weight: 400;
    /*display: block;*/
    /* float: left;*/
    line-height: 23px; }

    Thank you very much for help !
    I appreciate 😉

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Separator > bad position’ is closed to new replies.