View Single Post
Old 12-14-2023, 01:38 PM   #2
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,361
Karma: 20212223
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Welcome to MR!!

It looks like you are putting an <hr/> tag in an incorrect location. It should be all by itself, not embedded inside a <p> or <div> tag.

Code:
Wrong:
<body>

<div>yadda yadda. <hr/></div>

<p>yadda yadda. <hr/></p>

<span>yadda yadda. <hr/></span>

</body>

Correct:
<body>

<div>yadda yadda.</div>

<hr/>

<p>yadda yadda.</p>

<hr/>

</body>
Also, make sure you are properly closing the tag <hr/> not <hr>.

If that doesn’t fix the problem, could you post the section of html that is causing the problem, not just the error code.

Cheers!
Turtle91 is offline   Reply With Quote