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

How to remove <hr> tag ( horizontal lines ) from answers and questions.

 

 

1 Answer

+2 votes
by

It's actually not a HR tag, it's a CSS border. To remove it, in qa-styles.css find this block...

.qa-q-view-meta {
    border-bottom: 1px solid #bdc3c7;
    display: block;
}

...and remove the line starting "border-bottom".

Edit: here's an alternative that will survive upgrades to the theme. In the Admin area under Layout, add this to the box"Custom HTML in <head> section of every page"

<style>
.qa-q-view-meta {
    border-bottom: 0;
}
</style>

 

Welcome to the Q&A site for Question2Answer.

If you have a question about Q2A, please ask here, in English.

To report a bug, please create a new issue on Github or ask a question here with the bug tag.

If you just want to try Q2A, please use the demo site.

Categories

...