insideorkut.com

What is the best bulk iContact email software with it's own mail server?

Try iContact email marketing for free for 30 days. Click here to use coupon...

Get a free trial of iContact here. Click here for this special deal...
Quick question... What is the best bulk iContact email software with it's own mail server? Many thanks for any answer or 2. Another question on my mind: Hey, this is my first post so hello everyone and thanks in advance for any help..

I am having a problem formatting a table to use with images where there is a border/margin/padding/something at the bottom of all my cells that I can not fill. I am trying to basically make a table, 2 rows and 3 columns where each of the cells has an image for each corner so that it makes a square with rounded edges. Here is my table:.

<TABLE CELLSPACING="0" CELLPADDING="0" BORDER="0" STYLE="width: 270px; background-color: white;">.

<TR>.

<TD STYLE="width: 135px; height: 23px;">.

<IMG SRC="images/content_upper_left.gif">.

</TD>.

<TD>.

&nbsp;.

</TD>.

<TD STYLE="width: 135px; height: 23px;">.

<IMG SRC="images/content_upper_right.gif">.

</TD>.

</TR>.

<TR>.

<TD STYLE="width: 135px; height: 23px;">.

<IMG SRC="images/content_lower_left.gif">.

</TD>.

<TD>.

&nbsp;.

</TD>.

<TD STYLE="width: 135px; height: 23px;">.

<IMG SRC="images/content_lower_right.gif">.

</TD>.

</TR>.

</TABLE>.

At the bottom of every cell with an image there is a space. I want the bottom edge of the first row images to be flat up against the top edge of the bottom row images. Any ideas?..

Comments (13)

Good question... I dunno what is the answer. I'll do some Googling and get back to you if I find an answer. You should email the people at iContact as they probably could give you help..

Comment #1

This is common when the close <td> tag is not on the same line as the image..

<td>.

<img src="/spacer.gif"></td>.

Should fix your issue...

Comment #2

Ahh I forgot about that lil issue good find afterburn..

Comment #3

Thanks afterburn. That did it. Do you know of any other similar issues with HTML where the tag can't be on another line?..

Comment #4

No the issue is the image inside of the table no other tags that I know of do that...

Comment #5

One thing I know of is that if you put a closing </font> tag, sometimes the last line of text will have a larger space above it than normal. I guess that is sort of the same thing...

Comment #6

Thats a result of HTML stardard. It says font tags can not span more than 1 line...

Comment #7

But that's OK, because you shouldn't be using the font tag anyway.

BTW, it's good practice to code in all lowercase..

Comment #8

Josh,.

Why shouldn't I be using the font tag? Is it deprecated? Should I be using span with styles for font changes?.

Also, I thought you were supposed to code in all caps for tags and attributes...

Comment #9

Yes, the font tag is deprecated..

It depends on what you want to apply the font to, but most of the type using a span is your best choice..

XHTML, which will most likely be the future of html, requires all tags and attributes be in lowercase...

Comment #10

I see. Thanks for the info Josh. I will start using lower case for sure then...

Comment #11

No problem..

But while we're at it, I'll pick out a few more picky things from your code..

It's best to put all styles into an external style sheet, and then call them onto the page through classes or id's..

And in order for the page to validate, you need to specify alt text for your image...

Comment #12

Once again, thanks for the input..

I find it cumbersome to put style tags that you know you will only be using in one place in a separate file. The reason you have separate files is for easy reuse. I find that it's best to work as much in one file as possible, as long as it doesn't damage the portability of your site...

Comment #13

And I would agree with you. But it saves on load time and bandwidth usage if you put all styles in an external style sheet..

I think I also heard somewhere that xhtml 2.0 won't allow inline styles. Could be wrong though......

Comment #14


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