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 ] Remove User Info From Specific Post
Topic Started: May 7 2013, 11:17 PM (344 Views)
jragonizer
Member Avatar
Member
[ *  * ]
Zetaboards
www.w11.zetaboards.com/the_round_table
Remove avatar and profile info from a specific post post.

Thanks in advanced :)
Offline Profile Goto Top
 
Cory
Member Avatar
Member
[ *  *  *  *  *  *  *  *  * ]
Code:
 
<style type="text/css">
#post-18025544 + tr td.c_user * {
display: none;
}
</style>
That will basically empty the table cell of a post with the avatar in it. 18025544 has to be changed to the ID of the post. Simply click the post link, like Post #1 and the 'p=' number is the post ID.

It can go in the Javascripts wrapper.
Offline Profile Goto Top
 
jragonizer
Member Avatar
Member
[ *  * ]
sweet. Is there a way we could also remove the username and Online/PM thingy at the bottom? I want the topic page to be able to be wider.
Offline Profile Goto Top
 
Cory
Member Avatar
Member
[ *  *  *  *  *  *  *  *  * ]
You may want to try this instead:
Code:
 
<script type="text/javascript">
//<![CDATA[
$(function () {
var pID = 18025544;

$('#post-' + pID + ' + tr + tr + tr.c_postfoot td:first-child, #post-' + pID + ' + tr td.c_user, #post-' + pID + ' td.c_username').hide();
$('#post-' + pID + ' + tr + tr + tr.c_postfoot td.c_footicons, #post-' + pID + ' + tr td.c_post, #post-' + pID + ' td.c_postinfo').attr('colspan', '2');
});
//]]>
</script>
Offline Profile Goto Top
 
jragonizer
Member Avatar
Member
[ *  * ]
Perfect. Thanks! This is complete.
Offline Profile Goto Top
 
Moonface
Member Avatar


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