• Resolved pelgrimrat

    (@pelgrimrat)


    Dear support team,

    When I insert an unordered list in a custom tab (with HTML tags) the lists doesn’t show up as a lists. The bullet points are missing!

    For example, I inserted this in the custom tab field:

    <ul>
    	<li>Het podium is 12 cm breed, 7 cm diep en 1 cm hoog</li>
    	<li>De mengtafel is 3 cm hoog, 4 cm breed en 2 cm diep</li>
    	<li>De standaard met accessoires is 5 cm hoog, 5 cm breed en 2 cm diep</li>
    </ul>

    and it sows up in the front-end like this:

    Het podium is 12 cm breed, 7 cm diep en 1 cm hoog
    De mengtafel is 3 cm hoog, 4 cm breed en 2 cm diep
    De standaard met accessoires is 5 cm hoog, 5 cm breed en 2 cm diep

    So, without the bullets. Any ideas?

    Thanks in advance!!

    https://www.ads-software.com/plugins/woocommerce-custom-product-tabs-lite/

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

    (@skyverge)

    HI @pelgrimrat,

    This sounds like an issue with your theme. The theme is probably styling lists within WooCommerce product tabs without the bullets. You can try adding the following CSS to your theme’s style.css file:

    .woocommerce-tabs .panel ul {
    	list-style: disc;
    }

    I would also suggest getting in touch with your theme author to let them know of the issue.

    Cheers,

    Tamara

    Thread Starter pelgrimrat

    (@pelgrimrat)

    Hi Tamara,

    Thanks for your quick reply!

    I added your code to my stylesheet, but nothing changed. I will contact the theme developer. The theme I use is Travelify by Colorlib

    Plugin Author SkyVerge

    (@skyverge)

    Hi @pelgrimrat,

    While you wait for Colorlib to get back to you, can you try the following updated CSS:

    .woocommerce-tabs .panel ul {
    	list-style: disc;
    	padding-left: 20px;
    }

    Thanks ??

    Tamara

    Thread Starter pelgrimrat

    (@pelgrimrat)

    This worked perfectly!!

    Thank you so much Tamara for your time and quick replies!

    Maarten

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Unordered (bulleted) list not showing in tab’ is closed to new replies.