Home Forums WoodMart support forum bullets in product description

bullets in product description

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #543481

    atiam1982
    Participant


    680 / 5 000
    Wyniki tłumaczenia
    Tłumaczenie
    Good morning, in the product description in the panel, if I insert a bulleted list, I have black steps. I would like to have points like those in the screenshot. I added them as an html block before add to cart. But then I have the same description in all products or I have to create an HTML block for each product, which will not be convenient when there are a larger number of products. Is there a way to change the bullet point in the product description from a black dot to the one in the screenshot, but to be able to edit the description in a simple way for each product, preferably in the “description” panel, as is the default way to do it? Maybe some css that changes the appearance of the bullet point globally from dots to green arrows?

    Attachments:
    You must be logged in to view attached files.
    #543838

    Hello,

    If you make a bullet list in your WordPress editor and then switch to the “Text” view and add the custom class:

    Like this:

    <ul class="custom-arrow-list">
     	<li>Consequat a scelerisque suspendisse vel et eget eu vitae adipiscing nibh scelerisque semper cum adipiscing</li>
     	<li>Facilisis adipiscing est accumsan lorem vestibulum. Aliquet mus a aptent ullam corper metus accumsan.</li>
     	<li>Habitasse a purus nec ipsum a urna ac ullamcorper varius metus blandit posuere.</li>
    </ul>

    Screenshot for clarification:
    https://ibb.co/NFXpYVx

    Then add the following custom css code in theme settings > custom css > global custom css area:

    .custom-arrow-list {
    list-style-type: none;
    }

    .custom-arrow-list li:before {
    content: “\2192”; /* Unicode for right arrow */
    margin-right: 5px; /* Adjust spacing as needed */
    }

    Best Regards.

    #544666

    atiam1982
    Participant

    it works 🙂 thx 🙂

    #544680

    Sounds Great! that your issue has been solved.

    I’m so happy to hear you are pleased with the Theme and Support. XTEMOS strives to deliver the best customer experience, and it makes our day to hear we have accomplished that.

    We count ourselves lucky to have you as a customer. You can always reach us at any time. We are always here to help you.

    Thanks for contacting us.
    Have a great day.

    Topic Closed.
    Best Regards.

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘bullets in product description’ is closed to new replies.