Hi
I am trying to hide these …
http://screencast.com/t/o0U52SBKfwA
http://dev2.electrixinternational.com/blog/how-to-cut-and-thread-conduit/
#top .comment-reply-link {
display: none;
}
But it doesnt hide the reply link.
Hey richardelectrix!
Please change your code to following one
a.comment-reply-link {
display: none !important;
}
P.S.: You have started 72 threads within 2 weeks. That is a lot more than average. We would like to spend our time on all users’ queries equally. Please try to create less customization threads.
Regards,
Yigit
Hi Yigit
That doesnt appear to work.
I appreciate all of the effort you put in. A lot of the things we have asked for are to get things diplaying properly in general and a lot of work has been spent on mobile.
They arent really customisations – they are just making things look better and re-positioning things.
We do try where possible to troubleshoot in house but some things are beyond our knowledge.
Thank you.
I have fixed this with the following code:
/*************************************************************************************************
************* Hide the commentator name and the reply option on reviews and comments *************
*************************************************************************************************/
a.comment-reply-link {
display: none !important;
}
cite.comment_author_name {
display: none;
}
cite.author_name.heading {
display: none;
}
.author_name a, .author_name a:hover {
display: none;
}