Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
823 views
in Q2A Core by
edited by

Hello evryone,

I think it's quite simple but I can't find any solution.

Do you know : How to remove all sidebar titles ? Or just remove Related question title only into the sidebar

Thanks for your answer.

2 Answers

0 votes
by

Finally found the solution  =>

.qa-related-qs h2{display: none;}

0 votes
by

HTML code of sidebar varies according to plugin. Therefore, it is difficult to cope at a time. However, if you have knowledge of Javascript, you may be able to cope by making plugin of javascript OR jQuery.

If it is only related question, hack below is effective.

// replace [start]
//$themeobject->output(
// '<div class="qa-related-qs">',
// '<h2 style="margin-top:0; padding-top:0;">',
// $titlehtml,
// '</h2>'
//);
$themeobject->output('<div class="qa-related-qs">');
// replace [end]
 
P.S (This is just reference).
Purposes are different, but I made similar plugin in the past.
 
...