My comments are unnecessarily indented… (How to fix?!)

Posted in: Newspaper
Post count: 5

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!

Post count: 20688

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

Post count: 5

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

Post count: 5

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.

Post count: 20688

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

Post count: 5

Awesome, thank you! 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.