Templates and tables and paragraph formatting?
i've got text in table. i've formatted text paragraphs can specify padding. when insert new row, text formatting "none." have manually select cells , change formatting paragraph.
is there way accomplish automatically? pages based on template.
thanks,
dennya
i think giving table id resolve this, can create specific css rules.
maybe this:
<!-- regular paragraphs -->
p {
padding-top: 5px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 30px;
}
<!-- paragraphs inside table id of mytable-->
#mytable tr td {
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 5px;
}
this let set padding cells inside rows, inside table. not formatting text , making paragraphs though, hope helps.
good luck.
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment