insideorkut.com

Are you going to miss Yahoo iPage when they finally close this year?

Click Here To View All Answers...


My question is Are you going to miss Yahoo iPage when they finally close this year? Hoping for any answer or 2. Another question... I think alot fo you know I am having alot of problems with my web page, well I'm still having them, so I want a new template and wodnered (If I did a rough in paint), if anyone could put it into html for me? (one basic, simple template). I suppose you can tell me (if you want any) what type of credit you want..

Help would be great.

Thanks.

AirFAN..

Comments (10)

Ye, although you might want to make sure and wait for another member here to confirm my answer as I am not very confident. Better yet, why don't you contact the iPage guys because they can give you help better...

Comment #1

The basic layout for the table is simple enough..

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">.

<html>.

<head>.

<title>Page Title Goes Here</title>.

</head>.

<body>.

<table>.

<tr>.

<td colspan="2" width="100%">Header Row</td>.

</tr>.

<tr>.

<td width="20%">Top Nav Box</td>.

<td rowspan="2" width="80%">Content Box</td>.

</tr>.

<tr>.

<td width="20%">Bottom Nav Box</td>.

</tr>.

</table>.

</body>.

</html>.

You'll have to do your own tweaking for sizes and such, but that's basically it..

Does that help?.

Peg..

Comment #2

I'm not an expert at html, but if anything goes wrong you'll be first to know..

Comment #3

Ok, sorry to double post.

Ive played around with the boxes are got roughly what I want, I just want a clean border (like the image) but cant to this (many people will know I'm hopeless with borders). So could someone do somewith with the html to get a nice clean border like the image above?.

Thanks ever so much.

AirFAN..

Comment #4

Just add this:.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">.

<html>.

<head>.

<title>Page Title Goes Here</title>.

</head>.

<body>.

<center>.

<BR>.

<table.

Border="1" bordercolor="#000000".

>.

<tr>.

<td colspan="2" width="650">Header Row</td>.

</tr>.

<tr>.

<td width="20%">Top Nav Box</td>.

<td rowspan="2" height="300" width="80%">Content Box</td>.

</tr>.

<tr>.

<td width="20%">Bottom Nav Box</td>.

</tr>.

</table>.

</center>.

</body>.

</html>..

Comment #5

Ok, looks like I'm back to square one *cries*. Ive done what you said and it came up with this.

Here.

So I added cellSpacing="0" and ive now got this.

Here.

All I want is a border one pixel thick..

If someone can do it ill pay 5 (When my paypal account is up and running)..

Comment #6

Use this:.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">.

<html>.

<head>.

<title>Page Title Goes Here</title>.

</head>.

<body>.

<center>.

<BR>.

<table border="1" bordercolor="#000000" cellspacing="0" cellpadding="0" style="border-collapse: collapse">.

<tr>.

<td colspan="2" width="650">Header Row</td>.

</tr>.

<tr>.

<td width="20%">Top Nav Box</td>.

<td rowspan="2" height="300" width="80%">Content Box</td>.

</tr>.

<tr>.

<td width="20%">Bottom Nav Box</td>.

</tr>.

</table>.

</center>.

</body>.

</html>..

Comment #7

How do I indent the text a little bit (When I let dreamweaver do it it indents it like a cm).

Thanks.

AirFAN..

Comment #8

One more thing, the text is positioning itself in the middle (between the top and bottom of table). How do I make it so my text starts at the top of the table?.

Thanks loads.

AirFAN..

Comment #9

When I first got started in designing web pages years ago, it very much annoyed me that everytime I typed in more than one space next to each other but the browser would only render 1x space... after searching, I discovered that using.

&nbsp;.

For each space ( or 75% fo a space it sometimes seems based on the font I'm working with ) would allow me to do things like put several spaces in bewteen elements and words, additionally, I found that I could use the multiple.

&nbsp;.

's to indent words exactly how much I wanted....

Please dont mind the speech... memory flashback.....

Comment #10

For vertical positioning of cell content, use:.

For horizontal positioning of cell content, use:.

Add the appropriate attribute to the tr or td tags surrounding the cell(s) that you wish to modify alignment on.....

Comment #11


This question was taken from a support group/message board and re-posted here so others can learn from it.