I added this code to my style.css file…
#comments {
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
…but it didn’t work in Firefox. Chrome was fine.
This code works for all browsers:
#comments {
display: none;
}
OK for this site as I don’t want any comments, but I’m curious why disabling the borders didn’t work in Firefox…