Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

When Show Timestamps is checked, timestamps still won't show.

  • 2 답장
  • 1 이 문제를 만남
  • 55 보기
  • 최종 답변자: ertom153

more options

When I go to the web console, click on the gear, and check Show Timestamps it does not make a difference. It will not show any timestamps whether it's checked or not. I've cleared my cache and cookies but Show Timestamps still doesn't work. I'm at a loss.

When I go to the web console, click on the gear, and check Show Timestamps it does not make a difference. It will not show any timestamps whether it's checked or not. I've cleared my cache and cookies but Show Timestamps still doesn't work. I'm at a loss.
첨부된 스크린샷

선택된 해결법

Try to make the window wider.
r me the timestamps get hidden if I have the width below a specific minimum.

webconsole.css:

@media (max-width: 500px) {
  .message > .timestamp {
    display: none;
  }
}
문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (2)

more options

선택된 해결법

Try to make the window wider.
r me the timestamps get hidden if I have the width below a specific minimum.

webconsole.css:

@media (max-width: 500px) {
  .message > .timestamp {
    display: none;
  }
}
more options

Thank you. I could kick myself for not just changing the orientation to the bottom.