Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1083269

    list in widgets only work when adding to Quick CSS:

    /* lists in widgets */
    .widget ul li {
      list-style: disc inside !important;
      margin-left: .1em;
    }

    Note: had to use “inside” because outside not working…But outside preferred.
    Same results with or without Enfold compression enabled/disabled.

    Possible regression? See: (Feb 26, 2014)
    https://kriesi.at/support/topic/bullets-not-appearing-in-sidebar/

    • This topic was modified 5 years, 8 months ago by rob2701.
    #1084827

    Hey Rob,

    Sorry for the late reply. Could you post a link to where we can see this happening please?

    Best regards,
    Rikard

    #1084834

    Hi Rikard,

    Any text-widget really. Check the home page footer text-widgets (col 1,2 and 3).
    Link to staging in private. See bottom of QuickCSS.

    Kind regards,
    Rob

    NOTE:
    I also changed the rule to #id li (since the list-style property applies to list-items li, not the container ul).
    But that doesn’t work either.
    I think this may be because Enfold has decided to set list-style-type to NONE in the base css and then adds classes to achieve circle, disc, square etc.
    The other way around would maybe have been handier, i.e. add a class for .no-bullet or something instead of changing the default behavior?
    Anyways, I stil want to get this to work the normal way, and not even targeting the specific page will work in the current setup. :-)

    • This reply was modified 5 years, 7 months ago by rob2701.
    #1085785

    Hi,

    Thanks for the update.

    The login token has expired and the page requires a password. Please add it in the private field. And provide a screenshot if possible.

    Best regards,
    Ismael

    #1085872

    Hi Ismael,

    I was doing a lot of testing & htaccess changes yesterday, so temporarily disabled all other admin logins. Active now.

    Added note:
    Also by the way, you don’t really need admin access for that, you can also see it by adding a default WP Text widget to a footer column in a standard clean Enfold with Child installation :-)
    OL works fine, UL doesn’t.

    Kind regards,
    Rob

    • This reply was modified 5 years, 7 months ago by rob2701. Reason: added additional info
    #1087105

    Hi,

    Thanks for the update. We adjusted the css code a bit.

    #footer .textwidget ul {
        list-style: disc inside !important;
    }

    Best regards,
    Ismael

    #1087146

    Hi Ismael,

    Thanks for looking at this. Unfortunately (like I stated above earlier and in the text on the footer textwidget itself), UL inside always worked :-)
    It’s UL outside that doesn’t want to comply. I put the code underneath yours in the QuickCSS. Can you take another look? Thanks.

    Kind regards,
    Rob

    To sum it up:
    – OL works fine, but may need wordwrap for very long words?
    – UL INSIDE works, but may need wordwrap for very long words?
    – UL OUTSIDE does not work, not even when adding a custom-class to the UL

    Please see the 3rd footer column on the Home page

    • This reply was modified 5 years, 7 months ago by rob2701. Reason: Added info for clarity
    #1088097

    Hi,

    Thanks for the clarification. Try to add a left padding or set the overflow property of parent container to “visible”.

    #footer .textwidget ul {
        list-style: disc outside !important;
        padding-left: 30px;
    }

    The bullets don’t display “outside” because the content are clipped or they’re not allowed to display outside the container.

    Best regards,
    Ismael

    #1088156

    Hi Ismael,

    Ah, brilliant! I had not tried the overflow because it’s ugly and I had totally overlooked the fact that the footer columns have no margins and no padding :-)
    Works perfectly. Thanks for your help! Solved.

    Kind regards,
    Rob

    #1088347

    Hi,

    If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘lists in widgets – regression?’ is closed to new replies.