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