Click to See Complete Forum and Search --> : tables?
Hi, I am making a site and i can't get two pictures to line up. Can you please tell me how to line them up and make it so there isn't a space in between them?
Alsoin the pictures there is two different shades of blue. Can you tell me what the hex value for the lighter color is?
I thought it might be 0000ff but is not (0000ff is the back ground color).
Thanks
Vladdy
11-14-2003, 03:14 PM
And what does it have to do with tables?
Provide a link to the page for a more helpful answer...
Oops! Forgot the link. Sorry
http://www.marlintinicharters.com/wise
Oh and the pictures are big but they will eventually be resized
Vladdy
11-14-2003, 05:09 PM
I did not find any tabular information there to justify the use of tables.
i fixed it
how do i get rid of the line that splits the two images?
David Harrison
11-14-2003, 06:02 PM
I wrote some CSS for the page to get the pictures next to each other. It does require knowing the width of the image on the left, but then you should put the image dimentions in anyway.
Why do I get the feeling that these images were created for use on a monitor with resolution 1024x768? You should really deign a fluid layout, perhaps using percentages.
I have tried to reduce some of the "fuzziness" on the images by flood filling blue and black with a fairly high tolerance level on paint shop pro. If you're still interested, the colour of the blue was 0000fe (0 red, 0 green, 254 blue). It's now 0000ff (255 blue).
David Harrison
11-14-2003, 07:03 PM
Happy to help. :)
But now the page will only be viewable by people with newer browsers.
Is there any way to do it with tables?
Thanks
David Harrison
11-14-2003, 07:18 PM
But if you use tables for layout you won't be conforming to the WCAG (http://www.w3.org/TR/WAI-WEBCONTENT/#gl-structure-presentation).
i would like to use tables, is it possible?
Please tell me how.
David Harrison
11-14-2003, 07:43 PM
OK then, I have removed all of the CSS and replaced it with old, obselete and depreciated stuff. You'll be interested to hear that before Netscape 4.79 showed one picture above the other and now it just shows a blue background, so by actually using older code it looks worse.
But whatever floats your boat.
i will provide a link to both
chadypu
11-14-2003, 10:59 PM
try cellspacing="0"
<html>
<head>
<title>W.I.S.E</title>
</head>
<body bgcolor="ooooff">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td valign="top">
<div align="right">
<img src="wisebgside.JPG">
</div>
</td>
<td valign="top">
<div align="left">
<img src="wisebgtop.JPG">
</div>
</td>
</tr>
</table>
</body>
</html>
that would be the full html
werd
David Harrison
11-15-2003, 11:59 AM
You also might wanna take a look at this:
<body bgcolor="ooooff">
You have used the letter o, and for hex values you can only use the following, 0 1 2 3 4 5 6 7 8 9 a b c d e f, I assume that you meant to put 0's as that would result in the colour blue:
<body bgcolor="0000ff">