Support Forum

Removal of labels

FO foxy7
foxy7
Member

I would like to remove some labels and one of those is “Member Search (Current or All Forums)” in the Advanced Search section.

If I just remove the ‘labelMemberSearch’ in sp.Head.php, there will still be something left and I figured it’s because of this:

<fieldset class=”spSearchMember>

<legend>Member Search (Current or All Forums):</legend>”

Can you advise how to remove it exactly?
Thanks for you help.
 
 

5 Answers

New Answer

MP Mr Papa
Mr Papa
Member

with css…

fieldset.spSearchMember {display:none;}

FO foxy7
foxy7
Member

Ah, of course..Got it done with:

fieldset.spSearchMember legend {
display: none;
}

For some reason it’s not working with the “Select Message Recipients” label in Inbox and the “Current Displayed Avatar” label in “Edit Avatar”..Which lines would I need for these two? rolleys

MP Mr Papa
Mr Papa
Member

fieldset#spPmRecipients {display:none;}

.spProfileAvatar fieldset:first-child legend {display:none;}

FO foxy7
foxy7
Member

Hmm almost…”fieldset#spPmRecipients legend {display:none;}” does the trick, but it also removes “Select From Members” and “Message Recipients”, which I’m not really interested in….do you have another solution perhaps?

Can you also give me the line to remove the “Upload An Avatar” label in “Edit Avatar”? Forgot to mention that one..smile

MP Mr Papa
Mr Papa
Member

lol…

in the avatar one, just remove the :first-child since that is what was originally requested…

in the pm one, sorry, should be fieldset#spPmRecipients legend {display: none;}