How i can delete this icons help me

denny petterson Posted in Theme Development 9 years ago

enter image description here

please help me i want to delete this icons

@Arsalan Shah

please help me

Replies
us Johnny Jackson Replied 9 years 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 9 years 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 9 years 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:

           <ul  class="some-icons">
                <li><i class="fa fa-users"></i></li>
                <li><i class="fa fa-comments-o"></i></li>
                <li><i class="fa fa-envelope"></i></li>
                <li><i class="fa fa-globe"></i></li>
                <li><i class="fa fa-picture-o"></i></li>
                <li><i class="fa fa-video-camera"></i></li>
                <li><i class="fa fa-map-marker"></i></li>
                <li><i class="fa fa-calendar"></i></li>
           </ul>

I hope this helps!

Johnny Jackson

Afrikaans Denny petterson Replied 9 years ago

@Arsalan Shah please help me