design – boardwalk theme – main page

  • Unknown's avatar

    how can I eliminate the pinkish background colour when sliding over the different posts on the main page

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Howdy!

    You can eliminate this using the following CSS code:

    .hentry.has-post-thumbnail .entry-link {
    	background: none;
    }
    
    .hentry.has-post-thumbnail:hover .attachment-boardwalk-featured-image {
    	-webkit-transform: translate(-50%, -50%) scale(1.02);
    	-moz-transform:    translate(-50%, -50%) scale(1.02);
    	transform:         translate(-50%, -50%) scale(1.02);
    	-webkit-filter: grayscale(0%);
    	-moz-filter:    grayscale(0%);
    	-ms-filter:     grayscale(0%);
    	-o-filter:      grayscale(0%);
    	filter:         grayscale(0%);
    }

    Can you try putting that under Appearance -> Customize -> CSS?

  • Looks like you’ve managed to remove the hover colour effect so I’m marking this thread as resolved. Feel free to start a new one if you need help with something else.

  • The topic ‘design – boardwalk theme – main page’ is closed to new replies.