Title: CSS help
Last modified: September 1, 2016

---

# CSS help

 *  [pierremichaux](https://wordpress.org/support/users/pierremichaux/)
 * (@pierremichaux)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/css-help-63/)
 * Dears,
    On this page: [http://regence.be/categorie-produit/catalogue-du-23-avril-2016/](http://regence.be/categorie-produit/catalogue-du-23-avril-2016/),
   would it be possible to remove the pointer and the cursor to prevent people to
   be able to click on the image? The alternative would be to open the ‘quickview’,
   same target as the button below the picture but it seems complicated… Thx, Pierre

Viewing 7 replies - 1 through 7 (of 7 total)

 *  [ikaring](https://wordpress.org/support/users/ikaring/)
 * (@ikaring)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/css-help-63/#post-7626027)
 * I think it would be better to modify template file, but you can hide cursor like
   so:
    `.woocommerce-LoopProduct-link { cursor: none; }`
 * FYI
    [https://docs.woocommerce.com/document/template-structure/](https://docs.woocommerce.com/document/template-structure/)
 *  [ilnar_kan](https://wordpress.org/support/users/ilnarkan/)
 * (@ilnarkan)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/css-help-63/#post-7626028)
 * Of coure it is possible, you just need to change a little your html in a file
   that outputs this page.
    Right now you have `<a href="smthing"><img src="smthing"
   ><h3>Lot 0001</h3></a>` All you need is to change it to `<img src="smthing"><
   a href="smthing"><h3>Lot 0001</h3></a>`
 *  Thread Starter [pierremichaux](https://wordpress.org/support/users/pierremichaux/)
 * (@pierremichaux)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/css-help-63/#post-7626031)
 * Thx,
    @Ilnar_Kan, I have no experience to change this…
 * [@ikaring](https://wordpress.org/support/users/ikaring/) Modifying the template
   is beyond my skills…however the css you gave me does not work…
 *  [ikaring](https://wordpress.org/support/users/ikaring/)
 * (@ikaring)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/css-help-63/#post-7626052)
 * Actually that css only hide cursor, but still they can be clicked.
    To prevent
   clicks, you need to use javascript, if you leave template as is.
 * something like
    `jQuery(".woocommerce-LoopProduct-link").on('click',function(){
   return false;});`
 *  [ilnar_kan](https://wordpress.org/support/users/ilnarkan/)
 * (@ilnarkan)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/css-help-63/#post-7626056)
 * You could try this css code
 *     ```
       .woocommerce-LoopProduct-link img{
       	cursor: default;
       }
       ```
   
 * It should work, but only css doesn’t resolve the problem, you have to prevent
   redirecting when image is clicked, JS code will handle that.. and the code below
   in your main theme JS file
 *     ```
       $( ".woocommerce-LoopProduct-link img" ).click(function(e) {
           e.preventDefault();
           return false;
       });
       ```
   
 *  Thread Starter [pierremichaux](https://wordpress.org/support/users/pierremichaux/)
 * (@pierremichaux)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/css-help-63/#post-7626065)
 * Thx a lot.
    Just one last question…my main theme JS file…which file should I 
   edit?
 * jQuery.fullpage.js
    jquery.infinitescroll.min.js jquery.isotope.min.js jquery.
   nicescroll.js jquery.slimscroll.min.js themify.header-slider.js themify.mega-
   menu.js themify.script.js
 *  Thread Starter [pierremichaux](https://wordpress.org/support/users/pierremichaux/)
 * (@pierremichaux)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/css-help-63/#post-7626201)
 * @ilnar_kan
    Can you just let me know in what file I should insert the code? Thx
   a lot, Pierre

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘CSS help’ is closed to new replies.

## Tags

 * [image](https://wordpress.org/support/topic-tag/image/)
 * [link](https://wordpress.org/support/topic-tag/link/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 7 replies
 * 3 participants
 * Last reply from: [pierremichaux](https://wordpress.org/support/users/pierremichaux/)
 * Last activity: [9 years, 9 months ago](https://wordpress.org/support/topic/css-help-63/#post-7626201)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
