• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

"Privacy Statement"

Icheb

Limp Gawd
Joined
Dec 8, 2004
Messages
191
Does no one notice it that there is a "<!--" missing in front of that "link" or is that on purpose? ;)
 
The privacy staement link is commented out (sourced the thread page, maybe its just commented on threads). So what?
 
Yep, it looks like a botched comment job. If you look a few lines up, they started the comment before the Archive link, but then never closed it. That is what is causing the current 'funkyness' in properly rendering browsers.
 
lomn75 said:
Looks like a FF rendering bug, HTML is fine there.

Its not fine... Currently this is in the footer template:

Code:
		<div class="smallfont">

			<strong>
				<a href="mailto:hard.forum@hardocp.com">Contact Us</a> -
				<a href="http://hardocp.com">Sister Site to [H]ard|OCP</a> -
				<!--
				
				<a href="archive/index.php">Archive</a> -
				<!-- - <a href="">Privacy Statement</a> - -->
				<a href="#top" onclick="self.scrollTo(0, 0); return false;">Top</a>
			</strong>
		</div>

it should be...

Code:
		<div class="smallfont">

			<strong>
				<a href="mailto:hard.forum@hardocp.com">Contact Us</a> -
				<a href="http://hardocp.com">Sister Site to [H]ard|OCP</a> -
				<!--
				
				<a href="archive/index.php">Archive</a> -
				 - <a href="">Privacy Statement</a> - -->
				<a href="#top" onclick="self.scrollTo(0, 0); return false;">Top</a>
			</strong>
		</div>

not a big deal though, not like any one spends alot of time down there.
 
It looks like this issue might only affect gecko-based browsers. I'm seeing it on firefox, mozilla, and epiphany, but not on konqueror.
 
Dolby said:
Its not fine...
Ahh, correct. I checked and opening a comment inside a comment is in fact illegal. I just assumed that since that's never the case in traditional programming languages, it would be the case w/ HTML as well.
 
Back
Top