Hi lalaloo
For the case, you have to change p tag to div tag in the content of article and then open templates/ja_quillaja/css/template_css.css file, find following code section:
p.clipnote {
background: url(../images/clip-bg.gif) no-repeat top left #FFF8F2;
padding: 10px 10px 10px 50px;
border: 1px dotted #F2CAB7;
}
p.newspaper {
background: url(../images/newspaper-bg.gif) no-repeat top left #FFF8F2;
padding: 10px 10px 10px 50px;
border: 1px dotted #F2CAB7;
}
and change to:
div.clipnote {
background: url(../images/clip-bg.gif) no-repeat top left #FFF8F2;
padding: 10px 10px 10px 50px;
border: 1px dotted #F2CAB7;
}
div.newspaper {
background: url(../images/newspaper-bg.gif) no-repeat top left #FFF8F2;
padding: 10px 10px 10px 50px;
border: 1px dotted #F2CAB7;
}