|
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.
|