[hr] tag invisible on Firefox

Post a reply


In an effort to prevent automatic submissions, we require that you complete the following challenge.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :| :mrgreen: :geek: :ugeek: :arrow: :angel: :clap: :crazy: :eh: :lolno: :problem: :shh: :shifty: :sick: :silent: :think: :thumbup: :thumbdown: :salute: :wave: :wtf: :yawn: :facepalm: :bravo: :dance: :beard: :morebeard: :xmas: :HeHe: :trollface: :cookie: :rainbow: :monkeysee: :monkeysay: :happybday: :headwall: :offtopic: :superhappy: :terms: :beer:
View more smilies

BBCode is ON
[img] is OFF
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: [hr] tag invisible on Firefox

Re: [hr] tag invisible on Firefox

by derz00 » 28 Jun 2018, 16:15

Ah, possibly they had disappeared, but I never noticed, and now with GeekDude's fix, it works well.

Re: [hr] tag invisible on Firefox

by joedf » 28 Jun 2018, 06:03

Great to hear, you can thank GeekDude for this :+1:

Re: [hr] tag invisible on Firefox

by jeeswg » 28 Jun 2018, 04:17




At one point I didn't see them on Internet Explorer when used within a post, although they always worked when separating posts and signatures. They are working at the moment.


Re: [hr] tag invisible on Firefox

by Helgef » 28 Jun 2018, 02:32

They disappeared on my phone too a while ago, Opera.I see them now :thumbup:
:beer:

Re: [hr] tag invisible on Firefox

by joedf » 27 Jun 2018, 21:27

Not sure, but it's working on my pc right now

Re: [hr] tag invisible on Firefox

by derz00 » 27 Jun 2018, 17:37

I've always been able to see these lines; Firefox on Windows 10... Not sure what the variation is for.

Re: [hr] tag invisible on Firefox

by joedf » 27 Jun 2018, 13:00

Thank you for reporting this.
Commit: https://github.com/ahkscript/phpbb31_st ... 4be1aec0af

[hr] tag invisible on Firefox

by geek » 25 Jun 2018, 11:17

When browsing the forum from Firefox the horizontal rule tag does not display.

There is some CSS for hr tags that goes like this:

Code: Select all

hr {
  border: 0 solid transparent;
  border-top-width: 1px;
  height: 1px;
  margin: 5px 0;
  display: block;
  clear: both; }
but for it to display properly in Firefox it needs to be modified like this:

Code: Select all

hr {
  border: 0;
  border-top: 1px solid transparent;
  height: 1px;
  margin: 5px 0;
  display: block;
  clear: both; }
Edit: Also for .postprofile a similar change should happen for the vertical line between the post and the author information.
Attachments
Screenshot_2018-06-25_10-07-47.png
Screenshot_2018-06-25_10-07-47.png (85.39 KiB) Viewed 2989 times

Top