du kommst um ein eigenes css nicht drum rum:
Code:
TS:
page{
config.doctype = xhtml_trans
shortcutIcon = fileadmin/img/favicon.gif
includeCSS {
file1 = fileadmin/css/mystyles.css
file1.media = screen,projection
file2 = fileadmin/css/print.css
file2.media = print
}
}
ich persönlich habe mir für css angewöhnt die listenpunkte IMMER erstmal auf null zu setzen, also
Code:
list-style-type:none
den eigentlichen bullet kannst du dann für das li einfach als hintergrund definieren, zb so:
Code:
* {padding:0; margin:0} /*erstmal alles auf Null -> Kompatibilität!!!*/
ul {list-style-type:none}
li {background:url(..img/bullet.gif) 0px 4px no-repeat; padding-left:10px}
/*hintergrundlink xPos yPos wiederholung; Text einrücken*/ so klappt das valide und ist auch noch am schnellsten