Jump to content

I lost my crystal ball yesterday, If you would at least provide language, because looking at your post I cannot think of you providing sample code you have problem with.

 

But being serious, your post has no information that could be helpful someone to help you, I don't know what language you are using, and the code or at least a part of it would be informative.

Link to comment
https://linustechtips.com/topic/638442-bad-value-problem/#findComment-8235749
Share on other sites

Link to post
Share on other sites

The validator is mostly recommending you switch to CSS for your formatting but if you want to do it with CSS then...

 

Remove the "px" from your height and weight values to fix 1 and 2.

Ignore 3 and 4 if you don't want to use CSS.

For 5 you're missing a value, style equals nothing. You'll need to add quotes and a value or remove style= all together.

For 6 remove the "px" from your height and width again like for 1 and 2.

-KuJoe

Link to comment
https://linustechtips.com/topic/638442-bad-value-problem/#findComment-8235768
Share on other sites

Link to post
Share on other sites

6 minutes ago, Mr_KoKa said:

I lost my crystal ball yesterday, If you would at least provide language, because looking at your post I cannot think of you providing sample code you have problem with.

 

But being serious, your post has no information that could be helpful someone to help you, I don't know what language you are using, and the code or at least a part of it would be informative.

He's using HTML, the code is in the screenshot.

-KuJoe

Link to comment
https://linustechtips.com/topic/638442-bad-value-problem/#findComment-8235773
Share on other sites

Link to post
Share on other sites

5 hours ago, Mr_KoKa said:

I lost my crystal ball yesterday, If you would at least provide language, because looking at your post I cannot think of you providing sample code you have problem with.

 

But being serious, your post has no information that could be helpful someone to help you, I don't know what language you are using, and the code or at least a part of it would be informative.

<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8" />
	<title>Homepage</title>
	<link rel="stylesheet" href="homepage.css">
</head>
<body>
	<div id="container">
		<a href="http://www.brucetelecom.com/NetworkStatusDescription.php?id=43" style="margin-left: 265px; font-family: Verdana; color: #0b479d; font-size: 14px;">Bill payments during possible Canada Post work stoppage</a>
		<br />
		<br />
		<iframe src="frame1.html" scrolling="no" height="125px" width="865px" frameBorder="0">
			<p>iframes are not supported by your browser.</p>
		</iframe>
		<iframe src="frame2.html" scrolling="no" height="325px" width="250px" frameBorder="0" style=>
			<p>iframes are not supported by your browser.</p>
		</iframe>
	</div>
	<div id="body">
		<iframe src="table.html" scrolling="no" height="335px" width="631px" frameBorder="0" style="float:right;">
</body>
</html>

It`s HTML

Link to comment
https://linustechtips.com/topic/638442-bad-value-problem/#findComment-8237522
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×