Messagerss feed ?Jul 12, '07 10:44 AM
by nina for everyone
hi,,,how to remove the RSS Feed [? ] and
report abuse and
nina profile
under my user logo.
or i can hide it so.
thanks for your help guys

30 Comments
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;}
0rgcha wrote on Jul 12, '07
Thanks, Maria, I was wondering about this too.
Comment deleted at the request of the author.
mariatv wrote on Jul 12, '07, edited on Jul 13, '07
those are the boxez containing the links and the icons to the left
you see the URL of the icons
so it is possible to change the icons from here

ul.sidelist li.contacts {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/network.png) no-repeat scroll left top;
height:16px;
overflow:hidden;
white-space:nowrap;
width:108px;
}
ul.sidelist li.photos {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/photos.png) no-repeat scroll left top;
height:16px;
overflow:hidden;
white-space:nowrap;
width:108px;
}
ul.sidelist li.invite, ul.sidelist li.join {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/invite.png) no-repeat scroll left top;
height:16px;
overflow:hidden;
white-space:nowrap;
width:108px;
}
ul.sidelist li.pm {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/pms.png) no-repeat scroll left top;
height:16px;
overflow:hidden;
white-space:nowrap;
width:108px;
}
ul.sidelist li.block, ul.sidelist li.delete, ul.sidelist li.quit {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/x.png) no-repeat scroll left top;
height:16px;
overflow:hidden;
white-space:nowrap;
width:108px;
}
ul.sidelist li.rss {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/f.gif) no-repeat scroll left top;
}
ul.sidelist li.report {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/warning.png) no-repeat scroll left top;
height:16px;
overflow:hidden;
white-space:nowrap;
width:108px;
}
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 {,,,,,,,,,,}

for a mouse over effect


mariatv wrote on Jul 12, '07
last



this the whole box containing all the links

.sidelist {
background-color:#000000;
}
afterinfo wrote on Jul 12, '07
Awr thankyou so much for this tutorial maria
afterinfo wrote on Jul 12, '07
Right another question within this thread--

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...
Comment deleted at the request of the author.
Comment deleted at the request of the author.
afterinfo wrote on Jul 13, '07
Jm scroll down mate the details are down below on post

Maria:- wrote today at 9:03 AM, edited today at 9:23 AM
stuckonubabe10573 wrote on Jul 14, '07
thanks guys,,,,thanks.
ok let me try,,,
and i let u know how i make it.
thanks again.
stuckonubabe10573 wrote on Jul 22, '07
it work,,,thanks guys.
chianli wrote on Oct 17, '07
this is useful :)
bellatraicion wrote on Dec 4, '07
Cool....
givzycool wrote on Dec 12, '07
i wanna try as well
grafiteez wrote on Jan 19
hi ... can I know hw do I remove the icons to the left of the links ?
moonstruckfemme wrote on Jan 23
how do i remove icons only in the right rail? and where do i put css?...thnx =)
alogena wrote on Feb 15
for removing the icons in the rail you have to change the URL of the icons with none
that is

ul.sidelist li.contacts {
background:transparent none;
height:16px;
overflow:hidden;
white-space:nowrap;
width:108px;
}

and so on for all the other links I listed in the reply above

you can to write the code in many way
at the list of the reply above it is needs to add the last link added lately [Customize My Site]

ul.sidelist li.customize {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/settings.png) no-repeat scroll left top;
height:16px;
overflow:hidden;
white-space:nowrap;
width:108px;
}


alogena wrote on Feb 15, edited on Feb 15
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;
}
alogena wrote on Feb 15, edited on Feb 16
for change the default icons with a unique custom icon
it is enough to use this code [changing icon_URL with the effective URL]


/* replacing default icons with a unique custom icon*/
ul.sidelist li {
background:transparent url(icon_URL) no-repeat scroll left top;
}


PS
uhmmm maybe it doesnt work in IE cause will remain visible the old icons
if the case use the code in the next reply


alogena wrote on Feb 15, edited on Feb 15
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




/* changing every default icon */
/* change every default URL with your own URL*/
li.customize {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/settings.png) no-repeat scroll left top;
}
li.contacts {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/network.png) no-repeat scroll left top;
}
li.photos {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/photos.png) no-repeat scroll left top;
}
li.invite, li.join {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/invite.png) no-repeat scroll left top;
}
li.pm {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/pms.png) no-repeat scroll left top;
}
li.block, li.delete, li.quit {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/x.png) no-repeat scroll left top;
}
li.rss {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/f.gif) no-repeat scroll left top;
}
li.report {
background:transparent url(http://images.multiply.com/multiply/icons/clean/16x16/warning.png) no-repeat scroll left top;
}


1timelessdove wrote on Mar 15
customizing to disallow the block user, report abuse, quit group, etc. under the headshot is a violation of the ToS.
vivekpatil wrote on Mar 16
Plzzzzzzzzzzzzzzzzzzzzz
Help Me
vivekpatil wrote on Mar 16
hw i add new content boxes to my multiply site.
vivekpatil wrote on Mar 16
Help Me.
Plzzzzzzzzzzzzzzzzzzzzz
vivekpatil wrote on Mar 16
hw i add new content boxes(Like "Home" ,"Blog" ,etc...) to my multiply site.
riannethemes wrote on Jun 8
COOL!!!! :)
strandkorbtraum wrote on Jul 13
I tried it and your code worked for all the link icons except: # Promote My Site and # My Media Locker.

And the "Customize my Site" is missing an 'e' at the end .. any ideas how to get it back?
strandkorbtraum wrote on Jul 13
no need to search for something anymore... this code worked for me.. all icons gone and the text is fine..

ul.sidelist li, ul.sidelist li a { list-style-image: none; background: none; }
Add a Comment
   
CSS 4 MP
Join this Group!RSS FeedHelp on RSS FeedsAdd to My Yahoo
Report Abuse
© 2008 Multiply, Inc.    About · Blog · Terms · Privacy · Corp Info · Contact Us · Help