• Resolved gfr77

    (@gfr77)


    Hello,
    In this theme pictures appear on the cover in black and white and when you move the mouse from the image it become in color.
    Is it possible to change the operation, i want to see all image in color and when i move the mouse into de image it became in black and white.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Caroline Moore

    (@sixhours)

    Hi there! Yes, you can use CSS in a child theme or a CSS plugin (like Jetpack) to do this. I recommend using Firebug for CSS work–makes it much easier.

    Look for the following selectors in style.css and note what filters are applied. Then add the same rules to your child theme’s style.css and reverse the filters:

    .blog .hentry a .attachment-post-thumbnail,
    .archive .hentry a .attachment-post-thumbnail,
    .search .hentry a .attachment-post-thumbnail

    and

    .blog .hentry a:hover img,
    .archive .hentry a:hover img,
    .search .hentry a:hover img
    msohag

    (@msohag)

    <?php
    
    /* 	Design Theme's 404 Error Page
    	Copyright: 2012-2013, D5 Creation, www.d5creation.com
    	Based on the Simplest D5 Framework for WordPress
    	Since Design 1.0
    */
    
    get_header(); ?>
    <div class="pagenev"><div class="conwidth"><?php design_breadcrumbs() ?></div></div>
    <div id="container">
    
    <h1 class="page-title">Not Found</h1>
    <h3 class="arc-src"><span>Apologies, but the page you requested could not be found. Perhaps searching will help.</span></h3>
    
    <?php get_search_form(); ?>
    <p><a>" title="Browse the Home Page">? Or Return to the Home Page</a></p>
    
    <h2 class="post-title-color">You can also Visit the Following. These are the Featured Contents</h2>
    <div class="content-ver-sep"></div>
    <?php get_template_part( 'featured-box' ); ?>
    
    <?php get_footer(); ?>

    [Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Theme Author Caroline Moore

    (@sixhours)

    @msohag, it appears you have the wrong thread.

    Thread Starter gfr77

    (@gfr77)

    Thanks Caroline it works very good!!!

    Thanks a lot!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change image behavior on homepage’ is closed to new replies.