Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter noahidea

    (@noahidea)

    Found a solution, for anyone else looking for the same. Add this is additional CSS in the customizer, change the height and width as needed, and put in the corrent page/post id:

    /** 
     * Hide the default logo. 
     *
     * For posts use .postid-1 format.
     */
    .page-id-14 .custom-logo-link img {
        display: none;
    }
    
    /** 
     * Drop in a different logo.
     *
     * The site link is respected.
     */
    .page-id-14 .custom-logo-link {
        background-image: url(your-img-url-goes-here);
        background-repeat: no-repeat;
        background-size: 100%;
        display: block;
        position: relative;
        height: 65px;
        width: 65px;
    }
    • This reply was modified 5 years, 11 months ago by noahidea.
Viewing 1 replies (of 1 total)