Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
593 views
in Themes by
i am using snow flat theme. and i want to remove or make smaller or hidden  tags in question view page. which file i can reach the codes?

regards,
Adnan
Q2A version: 1.8.0

2 Answers

+2 votes
by
selected by
 
Best answer

In order to hide the tags in the question view only follow these steps:

1. Navigate to admin/layout

2. In the setting Custom HTML in <head> section of every page add the following code:

<style>
.qa-template-question .qa-q-view-tags {
    display: none;
}
</style>

by
yeahh. it is working, and super looking.
0 votes
by

and if you want to show tag only in question page not in listing page. you may add (as pupi1985  said) ;

<style> 
.qa-q-item-tag-item { 
    display: none; 

</style>

...