how to delete or hide the "New topic" button from the threads page only
tnx
tnx
$(function(){
$('.topic-actions .buttons a:first').css('display','none');
});
$(function(){
$('.topic-actions .buttons a img#i_post').css('display','none');
});
$(function(){
$('img[alt="Post new topic"]').css('display','none');
});
Coddy wrote:Try this:
- Code:
$(function(){
$('img[alt="Post new topic"]').css('display','none');
});
Since this thread is marked as solved, this will be moved now. |