Posted - 08/18/2020 : 20:23:38
I see an error with your doctype declaration too. Firefox has tons of great tools and when you view source of a page, you can see html errors in red.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Doctype problems can wreak havok on the way your site displays. https://www.w3schools.com/tags/tag_doctype.asp
Looking down the page, I see multiple open <a> tags not closed, and a few other stray tags not closed. This will also cause all kinds of weird behavior.
Try firefox... right click, view source.
Thanks, David
|