• Resolved tdma77

    (@tdma77)


    I am using WordPress 4.7.4 running NewsMag Child theme.

    I installed Breadcrumb and chose theme, etc… in settings, but the Breadcrumb still shows a red bullet at each

    • in the unordered list-style=type, which Breadcrumb uses to create the Breadcrumbs.

      Example: * [ Home ]* [ About Us ] (where * is the red bullet)

      If I add a Breadcrumb Separator (‘>>’) the Breadcrumb appears:

      Example: * [ Home ]* >>[ About Us ]>>

      I have tried using this code in my custom css:

      div.breadcrumb-container theme1 ul li {
      list-style-type: none;
      }

      But it does not remove the red bullet.

      What do I need to do?

      Thank You ??

Viewing 1 replies (of 1 total)
  • Thread Starter tdma77

    (@tdma77)

    I figured it out …
    It was because I was using the shortcode on each page (bottom or top of page):

    [breadbrumb]

    Rather than adding the php code to the template .php file.

    The solution was the same as you replied to the post:

    “Wher to paste the php code for it to work on the whole my page?”

    In my application I wanted the shortcode at the bottom of each page, so I added it to page.php at the end of the primary div:

    </main><!– #main –>
    added here —–> <?php echo do_shortcode( ‘[breadcrumb]’ ); ?>
    </div><!– #primary –>
    <!– NEEDED TO COPY THIS FILE PAGE.PHP TO THE CHILD THEME, AND ONLY ADD THE SIDEBAR CODE BELOW –>
    <?php get_sidebar(); ?>
    </div>

Viewing 1 replies (of 1 total)
  • The topic ‘Breadcrumb shows ul red bullet in-between [breadcrumb names]’ is closed to new replies.