How i can delete this icons help me

denny petterson Posted in Theme Development 1 decade ago

enter image description here

please help me i want to delete this icons

@Arsalan Shah

please help me

Replies
us Johnny Jackson Replied 1 decade ago

Hi Denny,

If you do not want to edit system files (probably not a good idea), you could instead edit the CSS for your chosen theme.

To do this, you can edit the file:

<ossn directory>/themes/[your theme]/plugins/default/css/core/default.php

The code you could add would look like this:


/*
* custom - remove home page icons
*/
.home-left-contents .some-icons {
display:none;
}


This will remove the icons in a clean manner and allow you to continue to receive upgrades.

Thanks

Johnny Jackson

German Zoltan M. Replied 1 decade ago

thats easy:
go to themes/goblue/plugins/default/css/default.php on your server

and find class

'.home-left-contents .some-icons i' and
'.home-left-contents .some-icons li '

and add
display: none;
save

reload
done

us Johnny Jackson Replied 1 decade ago

Hi Denny,

You can remove those icons by editing the file:

<ossn directory>/system/plugins/default/pages/contents/index.php

the specific html code to edit looks likes this:

           &lt;ul  class=&quot;some-icons&quot;&gt;
                &lt;li&gt;&lt;i class=&quot;fa fa-users&quot;&gt;&lt;/i&gt;&lt;/li&gt;
                &lt;li&gt;&lt;i class=&quot;fa fa-comments-o&quot;&gt;&lt;/i&gt;&lt;/li&gt;
                &lt;li&gt;&lt;i class=&quot;fa fa-envelope&quot;&gt;&lt;/i&gt;&lt;/li&gt;
                &lt;li&gt;&lt;i class=&quot;fa fa-globe&quot;&gt;&lt;/i&gt;&lt;/li&gt;
                &lt;li&gt;&lt;i class=&quot;fa fa-picture-o&quot;&gt;&lt;/i&gt;&lt;/li&gt;
                &lt;li&gt;&lt;i class=&quot;fa fa-video-camera&quot;&gt;&lt;/i&gt;&lt;/li&gt;
                &lt;li&gt;&lt;i class=&quot;fa fa-map-marker&quot;&gt;&lt;/i&gt;&lt;/li&gt;
                &lt;li&gt;&lt;i class=&quot;fa fa-calendar&quot;&gt;&lt;/i&gt;&lt;/li&gt;
           &lt;/ul&gt;

I hope this helps!

Johnny Jackson

Afrikaans Denny petterson Replied 1 decade ago

@Arsalan Shah please help me