Page 1 of 1

Hide folder image

Posted: 30 Mar 2016, 23:31
by vtjoanne
How should the code be written for my custom css file to hide the folder icon that shows beside the categories name?

.pg-csv-name {
text-align: left;
margin-top: 5px;
padding-left: 20px;
background: url(../../images/icon-folder-small.png) 0 1px no-repeat;
}

Re: Hide folder image

Posted: 01 Apr 2016, 11:46
by Jan
Hi, not sure what you exactly need, but if you want to hide some part on the site with help of css, you just add display:none; attribute and value.

e.g.

Code: Select all

pg-csv-name {
display: none;
}
Jan