Title: [Sight] Theme Remove Grid Thumbnail Hover
Last modified: August 20, 2016

---

# [Sight] Theme Remove Grid Thumbnail Hover

 *  [makecg](https://wordpress.org/support/users/makecg/)
 * (@makecg)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/)
 * I was wondering if there was a way on the sight theme to remove the Thumbnail
   hover script and always show the title below the thumbnail on the bottom.

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/page/2/?output_format=md)

 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993303)
 * It sounds as though you’re going to need to add modifications and when you do,
   use a [Child Theme](http://codex.wordpress.org/Child_Themes).
 * Are you familiar with HTML, CSS and PHP?
 *  Thread Starter [makecg](https://wordpress.org/support/users/makecg/)
 * (@makecg)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993306)
 * yeah I know html and css but not so much PHP. we already did alot of edits directly
   on the website so I don’t really want to do a child theme now. kind of sucks 
   i thought it would be easier to change.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993308)
 * Can you present a link to your website depicting this Thumbnail hover?
 *  Thread Starter [makecg](https://wordpress.org/support/users/makecg/)
 * (@makecg)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993310)
 * Here is the website right now, [http://beautifullyfitlife.com/](http://beautifullyfitlife.com/)
   
   if you go to the grid view you can see what i am talking about. I would like 
   it to look similar to the related posts thumbnails
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993311)
 * Do you know which Plugin is causing this? Have you tried disabling one-by-one
   your plugins to find out?
 *  Thread Starter [makecg](https://wordpress.org/support/users/makecg/)
 * (@makecg)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993314)
 * no it’s not a plugin it’s the actual sight theme. I just want to disable the 
   hover effect and have titles below thumbnail.
    It has to do with the JS Script
   [http://wpshower.com/demo/?theme=sight](http://wpshower.com/demo/?theme=sight)
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993319)
 * I can’t find the JavaScript which applies this. Perhaps it is CSS.
 *  [potentweb](https://wordpress.org/support/users/potentweb/)
 * (@potentweb)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993331)
 * Are you talking about the pinterest hover effect?
 *  Thread Starter [makecg](https://wordpress.org/support/users/makecg/)
 * (@makecg)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993342)
 * no the hover effect on the grid layout.. disable that and have the titles below
   the thumbnails
 *  [potentweb](https://wordpress.org/support/users/potentweb/)
 * (@potentweb)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993344)
 * The effect is in this file:
    [http://beautifullyfitlife.com/wp-content/themes/sight/js/script.js?ver=3.4.1](http://beautifullyfitlife.com/wp-content/themes/sight/js/script.js?ver=3.4.1)
 * Part:
 *     ```
       function grid_update(){
                   $('#loop').addClass('grid').removeClass('list');
                   $('#loop').find('.thumb img').attr({'width': '190', 'height': '190'});
                   $('#loop').find('.post')
                       .mouseenter(function(){
                           $(this)
                               .css('background-color','#efefef')
                               .find('.thumb').hide()
                               .css('z-index','-1');
                       })
                       .mouseleave(function(){
                           $(this)
                               .css('background-color','#f5f5f5')
                               .find('.thumb').show()
                               .css('z-index','1');
                       });
                   $('#loop').find('.post').click(function(){
                       location.href=$(this).find('h2 a').attr('href');
                   });
                   $.cookie('mode','grid');
       ```
   
 * Edit the mouse enter function.
 *  Thread Starter [makecg](https://wordpress.org/support/users/makecg/)
 * (@makecg)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993348)
 * ohhh its the z-index?
 *  [potentweb](https://wordpress.org/support/users/potentweb/)
 * (@potentweb)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993349)
 * Just remove the whole `$(this)
    .css(‘background-color’,’#efefef’) .find(‘.thumb’).
   hide() .css(‘z-index’,’-1′);`
 *  Thread Starter [makecg](https://wordpress.org/support/users/makecg/)
 * (@makecg)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993353)
 * awesome thanks. that works it removes the hover effects
    i’m so close now
 *  Thread Starter [makecg](https://wordpress.org/support/users/makecg/)
 * (@makecg)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993360)
 * got it to work a bit only problem is it overlaps the thumbnail a bit if there
   is too much words.
 *  [designtrial](https://wordpress.org/support/users/designtrial/)
 * (@designtrial)
 * [13 years ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/#post-2993595)
 * Hi makecg, do you solve the problem, i would like to know too since am using 
   the same theme and same idea..manythanks

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/page/2/?output_format=md)

The topic ‘[Sight] Theme Remove Grid Thumbnail Hover’ is closed to new replies.

## Tags

 * [hover](https://wordpress.org/support/topic-tag/hover/)
 * [remove](https://wordpress.org/support/topic-tag/remove/)
 * [script](https://wordpress.org/support/topic-tag/script/)
 * [thumbnail](https://wordpress.org/support/topic-tag/thumbnail/)

 * 17 replies
 * 4 participants
 * Last reply from: [designtrial](https://wordpress.org/support/users/designtrial/)
 * Last activity: [13 years ago](https://wordpress.org/support/topic/sight-theme-remove-grid-thumbnail-hover/page/2/#post-2993597)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
