5
Quote:
whitedragon wrote:
OK, I found it on my own! Who ever is in a problem like I have been, use command “
”.
It will work, but it's not most elegant solution, I suppose. I'm not CSS-HTML guru in any case, but... I solved it two way
1. Wrap block tables into div with special class, smth.like
<div class='spacer'>
<table cellpadding='0' cellspacing='0'>
table>
<table cellpadding='0' cellspacing='0'>
table>
<table cellpadding='0' cellspacing='0'>
table>
<table cellpadding='0' cellspacing='0'>
table>
div>
where "spacer" class defined as
.spacer{
padding: 2px 0px 2px 0px;
2. For bottom-block table (if you use more than 1 table per block) use (again..) special class
<table class="bottomtable" cellpadding="0" cellspacing="0">
...
table>
and define bottomtable approx. as (in my theme)
.bottomtable {margin-bottom: 9px;}