picnic_23

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Bug with List Symbol not showing since Update #151850
    picnic_23
    Participant

    Actually, just targeting ul & ol without refinement might mess with other stuff (like menus), but if it’s a padding problem, you at least know what to adjust. 😉

    I replaced it with:

    .wp-block-list {
    padding-left: 35px;
    }

    That will have to do for now.

    in reply to: Bug with List Symbol not showing since Update #151849
    picnic_23
    Participant

    I ran into something similar using the Bravada theme. I found that the list elements (ul, ol, li) are getting a padding of 0 in the css file, hiding the bullets/numbers outside of the text area.

    Try adding this to your css file or Customize > Custom CSS, and see if it helps:

    ul, ol {
    padding-left: 35px;
    }

    in reply to: How to remove the line in the footer #141658
    picnic_23
    Participant

    Been there (for hours), done … this. It’s a sneaky line.

    .footer-inside::before {
    display: none;
    }

    Do the same for #footer-bottom if you want to remove the “powered by …” area. Maybe it removes other stuff too – I don’t know, I want my footer clean and this works for me. So, in all:

    #footer-bottom, .footer-inside::before {
    display: none;
    }

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