Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author cubecolour

    (@numeeja)

    The bullets appear to be added in a non-standard way by your theme, overriding the tabby styles.

    You can check this by temporarily switching to a default theme such as twenty-seventeen.

    You will need to add some additional CSS rules with greater specificity to override the theme’s rules eg to ensure the graphic bullets are not added to the tab:

    
    .grt .post_content .responsive-tabs ul> li::before {
        content: '';
        display: none;
    }
    

    You will probably also need to add some other rules to similarly correct for styles in the theme that affect the dimensions & position of the tabs/tab content.

    Thread Starter thecouponingouple

    (@thecouponingouple)

    Thanks,

    I tried the fix.. and it worked in removing that extra list item.. It also removed all bullet points in the tabs. 🙂

    Plugin Author cubecolour

    (@numeeja)

    If there are bullets inside the tabs that need to be kept, you can add the ‘immediate child’ > selector after the .responsive tabs inthe selector to specify that only the list items in the tabs are affected:

    
    .grt .post_content .responsive-tabs > ul > li::before {
        content: '';
        display: none;
    }
    
    Plugin Author cubecolour

    (@numeeja)

    Update:

    Try the following CSS rules to override the styles in the theme that break how the tabs display:

    
    .grt .post_content .responsive-tabs > ul > li {
        margin: 0;
        padding: 10px 12px;
    }
    
    .grt .post_content .responsive-tabs > ul > li::before {
        content: '';
        display: none;
    }
    
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Extra showing on Tabs’ is closed to new replies.