I've tried everything. What I need is to stick something (text,image, another table, whatever) to the very top of a table cell. Every time I add something it gets put in the middle of the table cell by default. I am using dreamweaver, if by chance you know a easy method using dreamweaver, but I can go in to the code and do what I need, just tell me how I should do it. Maybe using CSS ?
i´m not sure but this might do the trick. In your html code where you want to put the image, put this: <img src="yourimagefolder/image.jpg" align="top, left, middle, right" border "0" alt="text descriping image"/> I think that align attribute works for everything. hope this helps !
Thx, but it doesn't work I don't know why. The alight attribute works for "left","center" and "right" but not for "top". I am trying to apply it to a table inside another table cell.
try this one: <img border="0" src="yourimagefolder/image.jpg" style="margin:whatever px amount for top, bottom, left, right" alt="text descriping image"/> don´t know if the style attribute works for tables, but try it.
Thx, that did it I knew it was something related with vertical aligment but I wasn't able to do it in dreamweaver. Gues code is better Happy new year.