Forum Replies Created

Viewing 1 replies (of 1 total)
  • Here is the code I am using. I got rid of the button look altogether for “continue reading.” From what I have seen so far, everything looks as expected on a laptop screen. I have not yet tested the code on a mobile device. I am not sure what .wpm affects.

    /* Color of older posts button */
    #infinite-handle span {
    	background-color: #c85300;
    }
    
    /* Button background and text color */
    button,
    input[type="button"],
    input[type="reset"],
    input[type="submit"],
    .wpm-button-primary,
    a.wpm-button-primary {
    	background: #4d4d4d;
    	color: #ffffff;
    }
    
    /* Button hover background color */
    button:hover,
    input[type="button"]:hover,
    input[type="reset"]:hover,
    input[type="submit"]:hover,
    .wpm-button-primary:hover,
    a.wpm-button-primary:hover,
    button:focus,
    input[type="button"]:focus,
    input[type="reset"]:focus,
    input[type="submit"]:focus,
    .button-primary:focus,
    a.button-primary:focus,
    .wpm-button-primary:focus,
    a.wpm-button-primary:focus,
    button:active,
    input[type="button"]:active,
    input[type="reset"]:active,
    input[type="submit"]:active,
    .button-primary:active,
    a.button-primary:active,
    .wpm-button-primary:active,
    a.wpm-button-primary:active {
    	background: #858585;
    }
    
    /* Continue reading button */
    .button-primary,
    a.button-primary {
    	background: #ffffff;
    	color: #042256;
    }
    
    .button-primary:hover,
    a.button-primary:hover {
    	background: #ffffff;
    	color: #E3A739;
    }
Viewing 1 replies (of 1 total)