• Resolved fjvanittersum

    (@fjvanittersum)


    I added custom css in generatepress:

    .wp-show-posts-read-more:link {
    	border: 0px;
    	padding: 0px 0px 0px 0px;
    	color: #3faeac;
    }
    .wp-show-posts-read-more:link:hover {
    	color: #2F6B6E;
    	background-color: #fff;
    }

    When I edit the customizer, it works fine ! As soon as I save this CSS and close the customizer, it works sometimes, but most times – in the same WP Show Post entry – it doesn’t work. The generic css hover (with black background is used in stead of my custom css).

    Why isn’t my custom css used ?

    Frans

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Leo

    (@leohsiang)

    Hi there,

    Try this instead:

    wpsp-read-more a.wp-show-posts-read-more {
        border: 0px;
        padding: 0px 0px 0px 0px;
        color: #3faeac;
    }
    wpsp-read-more a.wp-show-posts-read-more:hover {
        color: #2F6B6E;
        background-color: #fff;
    }

    Let me know ??

    Thread Starter fjvanittersum

    (@fjvanittersum)

    Thanks ! This works (after adding dots):

    .wpsp-read-more a.wp-show-posts-read-more {
        border: 0px;
        padding: 0px 0px 0px 0px;
        color: #3faeac;
    }
    .wpsp-read-more a.wp-show-posts-read-more:hover {
        color: #2F6B6E;
        background-color: #fff;
    }

    Frans

    • This reply was modified 6 years, 3 months ago by fjvanittersum.
    Leo

    (@leohsiang)

    Ahh yes good catch ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘.wp-show-posts-read-more not interpreted correctly’ is closed to new replies.