Home › Forums › General XMetaL Discussion › CSS Formatting Questions › Reply To: CSS Formatting Questions
Reply to: CSS Formatting Questions
July 31, 2009 at 4:53 pmOne way to control the width of each cell is to put placeholder text in new document templates. Placeholder text is the dark blue text on a light blue background that appears onscreen but not in output. See http://forums.xmetal.com/index.php/topic,284.0.html for details.
I would make these inline elements in the CSS file. You can make the | symbol appear between items by using before-text or after-text in the CSS file. E.g.
TAG2 {
display: inline;
}
TAG2:after {
display: inline;
color: #AAAAAA;
content: ” | {“;
}
Cheers,
Su-Laine