Title: Remove hover function
Last modified: August 21, 2016

---

# Remove hover function

 *  Resolved [jjj123](https://wordpress.org/support/users/jjj123/)
 * (@jjj123)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/remove-hover-function/)
 * Is it possible to remove the hover function so the columnns sit side by side?
   
   Also I am not adding a price under the title of the column so I would like to
   remove that section – currently with no wording in it it just shows a block of
   colour. Thanks.
 * [http://wordpress.org/plugins/ind-css3-pricing-table/](http://wordpress.org/plugins/ind-css3-pricing-table/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [SoursopTree](https://wordpress.org/support/users/artheme/)
 * (@artheme)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/remove-hover-function/#post-4315601)
 * Hey.. yes, it is.
 * open indstyle.php:
 * `ind-css3-pricing-table/css/indstyle.php`
 * find this codes:
 *     ```
       div.truecolind:hover {
       margin-top: -35px;
       text-align: center;
       border-radius: 5px;
       width: <?php if ($indplanhover_width != '') echo $indplanhover_width.'px'; else echo '200px';?>;
       padding: 0;
       }
       ```
   
 * and remove/ erase them.
 * To remove the price section, you could do this one:
 * – open indshow.css
 * – First, find this code:
 *     ```
       div#indwrapequally2 {
       position:relative;
       height: 140px;
       border-top-left-radius: 5px;
       border-top-right-radius: 5px;
       }
       ```
   
 * and then change with this one:
 *     ```
       div#indwrapequally2 {
       position:relative;
       /*height: 140px;*/
       border-top-left-radius: 5px;
       border-top-right-radius: 5px;
       }
       ```
   
 * – And then find this code:
 *     ```
       div.indprice p {
       width: 100%;
       margin: auto;
       margin-top: 0;
       text-align: center;
       line-height: 2;
       font-size: 45px;
       font-weight: bold;
       }
       ```
   
 * change with this:
 *     ```
       div.indprice p {
       display: none;
       width: 100%;
       margin: auto;
       margin-top: 0;
       text-align: center;
       line-height: 2;
       font-size: 45px;
       font-weight: bold;
       }
       ```
   
 * Let me know whether it works or not?
 * Ari

Viewing 1 replies (of 1 total)

The topic ‘Remove hover function’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/ind-css3-pricing-table_cbb4ac.svg)
 * [IND Pricing Table](https://wordpress.org/plugins/ind-css3-pricing-table/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ind-css3-pricing-table/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ind-css3-pricing-table/)
 * [Active Topics](https://wordpress.org/support/plugin/ind-css3-pricing-table/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ind-css3-pricing-table/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ind-css3-pricing-table/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [SoursopTree](https://wordpress.org/support/users/artheme/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/remove-hover-function/#post-4315601)
 * Status: resolved