comments bubbles

Posted in: Newspaper
Post count: 20

hey,
I know this post has been discussed before however I couldn’t find a complete solution.

a) I need to change font size and color of comment bubble and arrow.
https://snag.gy/GDlaVi.jpg

b) I need to show this element if comment is > 1

thank you in advance
Makis

Post count: 22421

Hello,

1) You can change the bubble color and font size with a bit of css. Try this code:
.td-module-comments a{
background-color:Red;
}
.td-module-comments a:after{
border-color: red transparent transparent transparent;
}
.td-module-comments{
font-size: 12px;
}

2) Unfortunately our theme does not have any such detect options to show the count only if it’s >1 it will have to be custom made. This is the wordpress function used to grab the comments count: https://developer.wordpress.org/reference/functions/get_comments_number/ in this file here: http://screencast.com/t/OZ5JGVxvWw7 You will have to change the function or add conditions to it if you know your way around coding.

Thank you!

Post count: 20

thank you for your quick response and help

1) Unfortunatelly the code has no effect to my request. (i have clear and disable all caches)
https://snag.gy/Nf9qlB.jpg

2) would apreciate if anyone can offer some help on this.

Post count: 22421

Hi,

1) The code works on my side: http://screencast.com/t/9uIu6ljUJd Please provide a link to your site so I can inspect it and see why the code does not apply.

2) Unfortunately it will have to be made custom and we cannot provide any custom work at the moment. We suggest hiring a developer to help out

Thank you!

Post count: 20

thanks for the reply.

here is a link to our site http://www.kefaloniapress.gr

please advise

Post count: 23312

Hello stavrosgian,

You will have to add the !important tag to make more precise your code. Try the code below and replace it in Theme panel->Custom CSS area.

.td-module-comments a{
background-color:Red!important;
}
.td-module-comments a:after{
border-color: red transparent transparent transparent !important;
}
.td-module-comments{
font-size: 12px!important;
}

Thanks for your message!

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