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

    (@mtekk)

    As far as I can tell, this is a styling issue. It appears the float: left; statement in this block of CSS is causing the issue:

    #breadcrumbs a, span.raquo {
        float: left;
        margin: -11px 0;
    }

    This is found on line 208 of your style.css. Normally, you could probably get away with just removing the float: left; from that CSS rule. However, in this case it’s going to affect your span.raquo items as well so you may want to split that CSS rule.

    Thread Starter alicat72

    (@alicat72)

    Thanks for your help John. Removing the float, plus adjusting the margin on some related elements did the trick. Very much appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Separators displayed together’ is closed to new replies.