We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Locked Topic
[ C ] Disable Medals, Avatars, and Signatures on one theme
Topic Started: Jun 26 2011, 12:55 PM (593 Views)
Ulti
Member Avatar
Member
[ *  * ]
Board Address: http://s7.zetaboards.com/Burnin_Rubber/
Board Software: ZetaBoards
Description: I know there is no real mobile theme/code for Zetaboards, and I understand this. So, I have been trying to make a theme that sort of remedies this disadvantage by doing a variety of things. One thing that I do need a code for is a code to disable avatars, medals, and signatures for everybody in this one theme; I do not want them to be gone for everybody on every theme; just people using the mobile theme.
Offline Profile Goto Top
 
Minato
Member Avatar
Let Me Be With You
[ *  *  *  *  * ]
Add this to the theme you want it to be disabled on (And this can be worked around with disabling javascript)

And when you say medals, I assume you mean the team icons/pips.

Code:
 
<script type='text/javascript'>
$('td.c_sig').remove();
$('td.c_user img.avatar').remove();
$('div.usertitle img').remove();
</script>
Offline Profile Goto Top
 
Ulti
Member Avatar
Member
[ *  * ]
Yeah, I meant the icons. I add this to the CSS, correct?
Offline Profile Goto Top
 
Minato
Member Avatar
Let Me Be With You
[ *  *  *  *  * ]
Theme Layout/Toward the bottom
Offline Profile Goto Top
 
Ulti
Member Avatar
Member
[ *  * ]
Wow, this is perfect. You have many thanks, Minato. ^_^
Offline Profile Goto Top
 
Cory
Member Avatar
Member
[ *  *  *  *  *  *  *  *  * ]
Code:
 
td.c_sig, td.c_user img.avatar, div.usertitle img {
display: none;
}
Use CSS if you want it to remove those items with JavaScript disabled as well.
Offline Profile Goto Top
 
RedBldSandman
Member Avatar
Asante sana Squash banana
[ *  *  *  * ]
I would also suggest using CSS in this case. Just add Cory's code snippet to the chosen theme's Theme Appearance and remove Minato's code.

Either way this is complete :)

Completed!

Your request has been completed. If you have any questions or concerns regarding the state of your request, please feel free to contact me via PM.
Offline Profile Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Closed Requests · Next Topic »
Locked Topic