Using of ul and li in PopUp Shortcode

edited November 2019 in Theme support
Hello again,

is it possible to use <ul> and <li> bullet points in an popup text?

Or maybe there is another solution for this:

i want to get the line break after "...".
so like this on another page, where i managed this with ul and li:

(you can see, after the line break the new word is started below the "Ist" word. (And not directly under the dot)

Hope my problem is clear enough!

Thank you and very best regards


Comments

  • Hello,
    you can do it only with <li> items. they have a padding on the left and the bullet is not a text character, like yours "..." so it will always wrap under.
    thanks
  • but <li> is not possible within the PopUp Shortcode...
  • If you want to create more advanced html structure, we suggest to use this code:
    [button title="Button" link="#you-custom-id" target="_blank" class="" download="" rel="lightbox" onclick=""]
    <div id="you-custom-id" style="display:none">CONTENT HERE</div>

    Thanks
  • so im trying the following code as you suggested:

    [button title="mehr lesen" link="#leistungen-popup" target="_blank" class="" download="" rel="lightbox" onclick=""]
    <div id="leistungen-popup" style="display:none">
    <h4>[icon type="icon-doc-text"] Leistungen</h4>
    Wir unterstützen Unternehmen jeglicher Größe bei …<br />
    <ul>
    <li>.... Analysen des Digitalisierungsstandes in kaufmännischen und Büroorganisationsprozessen</li>
    <li>.... Entwicklung einer Digitalisierungsstrategie</li>
    <li>.... Softwareauswahlverfahren und Übernahme des Projektmanagements</li>
    <li>.... Softwareimplementierungen und Übernahme des Projektmanagements</li>
    <li>.... Schulungen von Mitarbeitern in der effizienten Verwendung von digitalen Medien</li>
    <li>.... weiterführenden Themen im Zusammenhang mit digitaler Transformation</li>
    </ul>
    </div>

    But it's not working.. the "bullet" Points aren't showed...
  • Can you send me a link to your website?
    I'll check it in the source code what's wrong.
    Thanks
  • Hi,

    i ended the URL to muffin group via pn.

    you can find that Text under "Leistungen" (there you will see the button which displays the popup, done with above code.)

    THANK you!
  • Please paste that code into the Theme Options > Custom CSS & JS > CSS
    .mfp-container ul{
    list-style-type: disc !important;
    }
    Thanks
  • Its working, thank you!
Sign In or Register to comment.