« Back to the HTML Forum

changing the "report user" and the other contacting stuff

Posted by cyclops!

posted
updated

Forum: HTML Group

how do you change the text under the "contacting ___" like change the "report user" and stuff???


Report Topic

3 Replies

Sort Replies:

Reply by tanuf

posted

i don't know how, but changing the contact box when editting your profile is against spacehey's rules. when you go to "edit profile" a long tab on the side has rules and information on how to edit.
the rules are;

Important:

  • Don't hide the Navigation bar (Including the SpaceHey Logo, Search, LogIn/LogOut Actions and Links)
  • Don't hide the Footer (Including all the Footer Links and Copyright)
  • Don't hide the "Contact" Box or its content which allows users to add/remove you as a Friend and block/report you


Permalink Report Reply

Reply by cyclops!

posted

im not removing or anything??? i just wanna change the text of "report user" and not removing stuff like for example it'll change to " report!! (T_T)"  or something like that 


Permalink Report Reply

Reply by pixeldollie!! (。· ヮ ·。)

posted

I put the css right under the css I use for contact icons, also don’t make it misleading or unclickable it’s against the rules, change the text in the content boxes


.contact .inner .f-row:nth-child(1) .f-col:nth-child(1) a, .contact .inner .f-row:nth-child(1) .f-col:nth-child(2) a, .contact .inner .f-row:nth-child(2) .f-col:nth-child(1) a, .contact .inner .f-row:nth-child(2) .f-col:nth-child(2) a, .contact .inner .f-row:nth-child(3) .f-col:nth-child(1) a, .contact .inner .f-row:nth-child(3) .f-col:nth-child(2) a, .contact .inner .f-row:nth-child(4) .f-col:nth-child(1) a, .contact .inner .f-row:nth-child(4) .f-col:nth-child(2) a {

font-size: 0;

}

.contact .inner .f-row:nth-child(1) .f-col:nth-child(1) a:after, .contact .inner .f-row:nth-child(1) .f-col:nth-child(2) a:after, .contact .inner .f-row:nth-child(2) .f-col:nth-child(1) a:after, .contact .inner .f-row:nth-child(2) .f-col:nth-child(2) a:after, .contact .inner .f-row:nth-child(3) .f-col:nth-child(1) a:after, .contact .inner .f-row:nth-child(3) .f-col:nth-child(2) a:after, .contact .inner .f-row:nth-child(4) .f-col:nth-child(1) a:after, .contact .inner .f-row:nth-child(4) .f-col:nth-child(2) a:after {

font-size: 10px;

}

.contact .inner .f-row:nth-child(1) .f-col:nth-child(1) a:after {

content: "Add to Friends"

}

.contact .inner .f-row:nth-child(1) .f-col:nth-child(2) a:after {

content: "Add to Favorites"

}

.contact .inner .f-row:nth-child(2) .f-col:nth-child(1) a:after {

content: "Send Message"

}

.contact .inner .f-row:nth-child(2) .f-col:nth-child(2) a:after {

content: "Forward to Friend"

}

.contact .inner .f-row:nth-child(3) .f-col:nth-child(1) a:after {

content: "Instant Message"

}

.contact .inner .f-row:nth-child(3) .f-col:nth-child(2) a:after {

content: "Block User"

}

.contact .inner .f-row:nth-child(4) .f-col:nth-child(1) a:after {

content: "Add to Group"

}

.contact .inner .f-row:nth-child(4) .f-col:nth-child(2) a:after {

content: "Report User"


Permalink Report Reply