• pbilling165

    (@pbilling165)


    I’ve tried using three different plug-ins that let you insert tabs and tabbed content on pages, but with each one, the tabs work perfectly except that a round bullet (in whatever theme color I’ve chosen) appears to the left of each tab’s text label. If I turn off ul bullets for the whole site, the bullets on the tabs still remain. If I switch to a different theme the tab bullets disappear, so the bullets must be coming from something in the Attorney theme itself. Can anyone help me solve this problem? Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • stephencottontail

    (@stephencottontail)

    Can you post a link to your site?

    Thread Starter pbilling165

    (@pbilling165)

    Hi Stephen. I figured out the solution. In style.css, I changed the content attribute to none in the code shown below:

    .post_content ul li::before {
    content: none;
    position: absolute;
    left: 0px;
    top: 0px;
    color: #C7930D;
    font-family: Arial,Helvetica,sans-serif;
    font-weight: 700;
    font-size: 16px;
    }

    Then I added this to get regular square bullets for unordered lists:

    .post_content ul li {
    list-style-type: square;
    list-style-position: outside;
    }

    I hope this helps others who encounter the same problem.

    Thread Starter pbilling165

    (@pbilling165)

    Forgot to add that I’m using an Attorney child theme.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Bullets appear beside tab labels’ is closed to new replies.