Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Table border only on three sides.
Old 11-21-2008, 07:13 PM Table border only on three sides.
Experienced Talker

Posts: 46
Name: Brent
Trades: 0
Hi All,
The man wih the impossible questions is back!

I am working on some HTML for an email campaign. So I cannot use css or any css inline stylings. It has to be all HTML for it to be compatable with all email programs. So Hurray, everything is being done with tables instead of divs.

The way the standards is set up, each page needs to have a border around three sides, left, right, and bottom. The top is completed with a header. You can see an example of one of the pages I am trying to recreate for HTML here:
http://www.cigarheads.biz/sequence/c...cigarhead.html

Sooo, is this even possible with straight HTML?

Thanks!
cruizer is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-21-2008, 07:30 PM Re: Table border only on three sides.
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,516
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
nope.

on page stylesheets & inline css works with all email clients I have ever tried, stay with CSS1 styling and it should be fine.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 11-21-2008, 08:50 PM Re: Table border only on three sides.
Brian07002's Avatar
Defies a Status

Posts: 2,138
Name: ...
Location: ...
Trades: 0
Quote:
Originally Posted by cruizer View Post
Hi All,
The man wih the impossible questions is back!

I am working on some HTML for an email campaign. So I cannot use css or any css inline stylings. It has to be all HTML for it to be compatable with all email programs. So Hurray, everything is being done with tables instead of divs.

The way the standards is set up, each page needs to have a border around three sides, left, right, and bottom. The top is completed with a header. You can see an example of one of the pages I am trying to recreate for HTML here:
http://www.cigarheads.biz/sequence/c...cigarhead.html

Sooo, is this even possible with straight HTML?

Thanks!
Smoke or GET SMOKED!
__________________
Made2Own

Please login or register to view this content. Registration is FREE
Brian07002 is offline
Reply With Quote
View Public Profile
 
Old 11-24-2008, 04:02 AM Re: Table border only on three sides.
Experienced Talker

Posts: 48
Name: Pieter
Location: Holland
Trades: 0
You can use style="border-top: no" but i don't think you can do this without using css..
elcosmo is offline
Reply With Quote
View Public Profile
 
Old 11-24-2008, 05:58 AM Re: Table border only on three sides.
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,516
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
style="border-top: no" ??

You can't make values up for CSS properties you know.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 11-24-2008, 06:34 AM Re: Table border only on three sides.
Skilled Talker

Posts: 88
Trades: 0
i think you need to fix your css first before we go on fixing your main issue which you mentioned, so for example your css:

A { color: #FF0; text-decoration: none; }
A:link { color: #e39239; text-decoration: underline; }
A:visited { color: #e39239; text-decoration: underline; }
A:active { color: #e39239; text-decoration: underline;}

do:

a:link { color: #FF0; text-decoration: none; }
a:active,
a:visited { color: #e39239; text-decoration: underline; }
a:hover { color: #fff }

when you type a,p,fieldset,div,span,legend,img,table,tr,td,th - these are all global attributes so you don't need to specify ones after like you have above.

try not to do: padding-left:5px; i see your writing short hand css which is good, but don't mix it with old style css so do: padding: 0px 0px 5px; (i think its that, can't remember off the top of head) do the same for margins too.

you also have: width= 100%; it should be: 'width: 100%'

instead of this: border-style:solid;
border-color: #000000;

why not do: border: 1px solid #000;

i haven't heard of this before: content: "."; (we are all still learning so correct me if im wrong)

see that then looks better and easier to follow.

I have heard before you cannot use css in emails too which is nutts but could be true never tried it before so cannot really help you with your html because i forgot the old code used in frontpage and all those old apps.
__________________
Graham Barnes


Please login or register to view this content. Registration is FREE
xpguy is offline
Reply With Quote
View Public Profile
 
Old 11-24-2008, 05:13 PM Re: Table border only on three sides.
Experienced Talker

Posts: 46
Name: Brent
Trades: 0
Thanks for the info guys. Been doing a lot of testing, and I think I have it as good as it's gonna get. From what I can gather, only do inline css if you have too. Most email clients will strip out anything above the body tag, so page stylesheet will not work. Yahoo and Thunderbird read inline css just fine. Gmail will too, but since their latest update, it ignores cellpadding and cellspacing. Hotmail ignores all inline css.

I don't know about AOL. I don't know anyone that has it to test with.

So basically anyone with Hotmail isn't going to see the borders, but most everyone else will.
cruizer is offline
Reply With Quote
View Public Profile
 
Old 11-24-2008, 08:21 PM Re: Table border only on three sides.
serandfae's Avatar
Do the "Evil Nanner" !!!

Posts: 8,936
Name: Tim Daily
Location: Apex, NC, US, Sol 3
Trades: 0
AOL, at least for the users I know that have it, uses IE7 within it.

tim
__________________
SEO "experts" smell like Big Fish_|_
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

serandfae is offline
Reply With Quote
View Public Profile Visit serandfae's homepage!
 
Reply     « Reply to Table border only on three sides.
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.87565 seconds with 12 queries