How can i delete the Top Settings Block on the viewFriends.php page?
How can i delete the Top Settings Block on the viewFriends.php page? |
Anyone an idea how to delete this? |
Try this in common.css: div.top_settings_block div.ordered_block { display:none; } This is my signature, there are many like it but this one is mine... |
Yes, that worked, but i only want to delete that bar in viewFriends.php How can i do that? |
Hello 1. You may create your own CSS file in templates/base/css/ folder, for example view_friends.css 2. Add the following CSS class in it div.top_settings_block { 3. Edit viewFriends.php file. Find the following line $_page['css_name'] = array('browse.css'); and replace it with this one $_page['css_name'] = array('browse.css', 'view_friends.css'); Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Thanks! That worked :) |
Hello Thanks! That worked :) You are welcome! :) Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |