• Resolved stargirl1

    (@stargirl1)


    hi,

    how can i turn off the background color on the prev and next? i managed to turn off the background color on the words but not on the hover. i do want the hover on the page numbers.

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author AlanP57

    (@alanp57)

    Try this:

    ol.wp-paginate.wpp-modern-grey.font-inherit li a.prev,
    ol.wp-paginate.wpp-modern-grey.font-inherit li a.next {
    background-color: transparent !important;
    }

    modern-grey a:hover {
    background: #88B04A !important;
    color: #FFF;
    }

    Thread Starter stargirl1

    (@stargirl1)

    thank you that worked.

    i forgot to ask, how can i get the words “next” and “previous” to have a the orange hover? not a background hover. just the color of the words.

    Plugin Author AlanP57

    (@alanp57)

    ol.wp-paginate.wpp-modern-grey.font-inherit li a.prev, ol.wp-paginate.wpp-modern-grey.font-inherit li a.next { background-color: transparent !important; color: #ffa500; }

    Thread Starter stargirl1

    (@stargirl1)

    thanks for the quick response. unfortunately that did not work.

    shouldn’t it say a:hover somewhere for the hover color on next and previous words?

    Plugin Author AlanP57

    (@alanp57)

    Yes, we should add ‘:hover’

    ol.wp-paginate.wpp-modern-grey.font-inherit li a.prev:hover,
    ol.wp-paginate.wpp-modern-grey.font-inherit li a.next:hover {
    color: color: orange !important;
    }

    Thread Starter stargirl1

    (@stargirl1)

    the word “color” was twice” in the CSS that you provided but when i took that out it worked. thank you very much!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘how can i turn off background color hover prev next’ is closed to new replies.