So I had Newspaper v4 for a long time and just switched to v8…but, now my comments are weirdly indented to the right, instead of right under the author name. It looks weird on desktop and even worse on mobile. Is there CSS or some other way to fix this?
Here is an example: http://www.edustenia.com/4-dias/#comments
Thank you!
-
This topic was modified 9 years by
Eduardo Cornejo.
Hi,
You can try a code like this, and the comments will display the way you want
– https://www.screencast.com/t/4Q0sSGb9SmM
– https://www.screencast.com/t/MVmYmBsSy
Enter the code in Theme panel->Custom Css
.comment .comment-content {
margin-left: 0!important;
}
Thanks
Almost there! So that fixed pretty much everything, except for the “RESPONDER” (REPLY) Button. Is there one more line of code that needs to be added?
Here is the link: http://www.edustenia.com/4-dias/#comments
And if you could also please help me change the color and accent color of the POST COMMENT button? I tried to on the theme panel but it does not give the option.
-
This reply was modified 9 years by
Eduardo Cornejo.
-
This reply was modified 9 years by
Eduardo Cornejo.
Hi,
Sorry about that, I failed to see that button. Please try this code to make it aligned to the left, or add just the class in the previous code
– https://www.screencast.com/t/Ix9TmIRdD
– https://www.screencast.com/t/6xRAkk0f
.comment-meta {
margin-left: 0!important;
}
If you mean this button
– https://www.screencast.com/t/qEfX8z1hy
You can change the color with a code like that. The first color value will be the normal button color, while the second color will be the hover
input[type=submit] {
background-color: blue;
}
input[type=submit]:hover {
background-color: red;
}
Thanks