• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Remove Page Description from Threads

  • Thread starter Thread starter ragtek
  • Start date Start date
R

ragtek

Guest
If you want to remove the Page Description only from Threads, you can add

Code:
.thread_view #pageDescription
{ display: none !important; }
to your extra.css

If you want to remove it from ALL PAGES, you can use
Code:
#pageDescription
{ display: none !important; }

(I've done it via css, because i don't wanted to edit the standard xf templates;) )
It's also possible to remove it direct from the template => http://xenforo.com/community/threads/do-you-prefer-current-thread-descriptions.20360/ )
 
How about this ragtek:

1d008e1aa2.png
 
You can add this to EXTRA.css, but it will remove the title from all pages as it's a common class.

Code:
.titleBar {
display: none;
}
 
You could add a "parent" id or css class (or check it via xen:if controllername == 'xxxx') condtion to add this to extracss only if needed
 
You can try adding this to the extra template;

Code:
.forum_list .titleBar {
        display: none;
}

OR

Code:
.forum_list .titleBar {
  text-indent: -9999px;
}

I recommend the first, if you just want to hide it, but if you want to replace with an image or something, than the text-ident would work wonderfully. Not sure which would be more semantic, if any of them is at all :unsure:
 
Top Bottom