mariatv wrote on Jul 12, '07, edited on Jul 12, '07
ul.sidelist li.contacts a {display:none;} ul.sidelist li.photos a {display:none;} ul.sidelist li.pm a {display:none;} ul.sidelist li.invite a {display:none;} ul.sidelist li.rss a {display:none;} ul.sidelist li.report a {display:none;} ul.sidelist li.block a {display:none;}
mariatv wrote on Jul 12, '07, edited on Jul 12, '07
its the complete list for sites and groups
ul.sidelist li.contacts a {display:none;} ul.sidelist li.photos a {display:none;} ul.sidelist li.pm a {display:none;} ul.sidelist li.invite a {display:none;} ul.sidelist li.join a {display:none;} ul.sidelist li.quit a {display:none;} ul.sidelist li.contacts a {display:none;} ul.sidelist li.delete a {display:none;} ul.sidelist li.rss a {display:none;} ul.sidelist li.report a {display:none;} ul.sidelist li.block a {display:none;}
so u see for a given box such as contacts
ul.sidelist li.contacts { ,,,,,,,,,,,} is the box
ul.sidelist li.contacts a {,,,,,,,,,,} is the link
...
of course you could to add ul.sidelist li.contacts:hover { ,,,,,,,,,,,} ul.sidelist li.contacts a:hover {,,,,,,,,,,}
Is it possible to turn the rss feed OFF So as to not work or is that impossible as some feeds I KNOW Of are showing the html coding... check the feed for AfterMovies maria & you,ll see what i mean...
for simply REMOVING ALL THE LINKS with a compact code without to add new icons use this code
/*REMOVING ALL THE LINKS*/ ul.sidelist li { visibility:hidden;} ul.sidelist li a { visibility:visible;}
you can also to adjust the position adding some line to the code fundamentally for centering the links you have to remove the space created to the left of the links for the icons
/*REMOVING ALL THE LINKS and centering the links*/ ul.sidelist li { visibility:hidden; margin:0px; padding:0px 0px 4px 0px; /*the 4px value gives extra pixel to the distance between the lines*/ text-align:center; /*centering the links in the box*/ } ul.sidelist li a { visibility:visible; } .railbody ul { margin:-3px; /*this enlarge the whole box containing all the links*/ padding-left:8px; /*this move to the left/right the links*/ padding-top:5px; }
finally for changing every default icon with a different custom icon change every URL of the default icons with your custom icons URLs the default size for all the icons is
height 16px; width 16px;
you could use a bigger size for the icons just making some simple change in the code for creating the need space