hi
i want to hide or remove price text from front page
thanks in advance
hi
i want to hide or remove price text from front page
thanks in advance
Is that your page or are you bringing that page in by way of an iframe or what?
It usually helps to give more information about the elements on the page.
If you have access to the code for that page, then just “hide” the price div.
If you learn more HTML and CSS and also learn how to use your developer’s tools, you too can find out where the code is. I notice that the CSS is minimized (most of it seems to be on line 1). Good luck finding that rule.
Hi there aliqayyum,
in this CSS file…
http://everlinkmarketing.com/wp-content/themes/tireswheels/css/app.css?ver=4.8.1
… change this…
.pricing-table.creative .price{
color:#FFF;
text-align:left;
padding:10px 24px 32px;
background-color:transparent;
font-size:32px;
font-weight:900;
}
…to this…
.pricing-table.creative .price{
color:#FFF;
text-align:left;
padding:10px 24px 32px;
background-color:transparent;
font-size:32px;
font-weight:900;
visibility:hidden;
}
coothead
thanks
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.