Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1369588

    Hello,

    I would like to change the border color of search results circles and of the pagination circles. Please see the private link. Is it possible to do this?

    Thank you,
    Marina

    #1369607

    Hey Marina,

    Please try this for the search result circles:

    .search-result-counter {
      border-color: red;
    }

    The pagination circles actually have box shadow applied, and this is the current value:

    .pagination span.current, .pagination a.inactive {
        box-shadow: 0 0 1px 0 rgb(0 0 0 / 20%);
    }

    Best regards,
    Rikard

    #1369610

    Hello,

    Does not work, neither of the code pieces, the color is not changing.

    Best regards,
    Marina

    #1369626

    Hi,

    That’s unfortunate. Please try this instead:

    .search-result-counter {
      border-color: red !important;
    }
    .pagination span.current, .pagination a.inactive {
        box-shadow: 0 0 1px 0 rgb(0 0 0 / 20%) !important;
    }

    Best regards,
    Rikard

    #1369630

    Hello,

    The pagination code works, for the search results – still doesn’t work.

    Best regards,
    Marina

    #1369662

    Hi,

    Please try this instead for the search result:

    .search-result-counter {
        border: 1px solid red;
    }

    Best regards,
    Rikard

    #1369733

    Hello,

    This code does not produce the needed result either. However, the following code works:

    .search-result-counter { box-shadow: 0 0 1px 0 rgb(0 0 0 / 50%) !important; }

    Thank you for your help, you can close the ticket.

    Best regards,
    Marina

    #1369740

    Hi,

    Great, I’m glad that you got it working. I’ll close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Border color of search results circles and pagination circles’ is closed to new replies.