Move subscribe and question stats

4.13K viewsGeneral
1

Hi,

Wondering how can I move the subscribe and question stats sidebar on question page to show below content of question?

Thanks!

0
#anspress .ap-q-left.col-md-9 {
    width: 75%;
}
#anspress .ap-question-right.col-md-3 {
    width: 100%;
}

Add this to your style.css

Hi,

That did not work, but I actually figured it out for desktop:

@media screen and (min-width: 992px) {
#anspress .col-md-8 {
width: 100%;
}
}
@media screen and (min-width: 992px) {
#anspress .col-md-4 {
width: 100%;
padding-top: 25px;
}
}