How to display "Select Advanced" as text instead of bulletpoints

Support General How to display "Select Advanced" as text instead of bulletpoints

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #28914
    admin@tomarco.sk[email protected]
    Participant

    Hi there,

    I created a custom fields using "Select Advanced". When I select multiple choices it is displayed as a bullet points on the frontend. I would need to display choices as a normal text separated with coma.

    I am using Elementor PRO to display custom fields. I tried to display this field with multiple elementor elements but it is always displayed as a bullet points.

    #28920
    Long NguyenLong Nguyen
    Moderator

    Hi,

    You can style the list values by some CSS code to display them inline. For example:

    ul {
        list-style-type: none;
    }
    ul li {
        display: inline-block;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.