• Resolved app103

    (@app103)


    I can’t figure out how to remove the ugly arrows that are in front of every single page number, in the pagination. (not referring to << >>)

    I have tried all of the following CSS in WordPress Customize, unsuccessfully:

    .lcp_paginator li{
      list-style: none !important;
    }
    .lcp_paginator ul{
      list-style: none !important;
    }
    .lcp_paginator ol{
      list-style: none !important;
    }

    Nothing seems to work.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Fernando Briano

    (@fernandobt)

    Hi @app103,
    These arrows are inhereted in the paginator’s list items from this CSS:

    .entry-content ul li::before {
        font-family: FontAwesome;
        content: '\f0da';
        margin-right: 5px;
    }

    You can remove them with the following CSS code:

    .lcp_paginator li::before{
      content: none !important;
    }

    Cheers!
    Fernando

    Thread Starter app103

    (@app103)

    That worked. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I remove the ugly arrows from the pagination?’ is closed to new replies.