remove tags word from single coupon page
how to remove tags word from single coupon page?
below solution not work
.................................................. .....
One way to implement this is through the style.css or in the child theme css. Just look for the code below;
Code:
#content .tags {
background: url("images/tag-label.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
color: #979797;
float: left;
line-height: 16px;
padding-left: 25px;
}
Add the display none parameter to make it look like this.
Code:
#content .tags {
background: url("images/tag-label.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
color: #979797;
float: left;
line-height: 16px;
padding-left: 25px;
display: none;
}