Dear uniwebsa,
To get the bullets in the articles showing you can try as following
Open the file of templates/ja_business/css/template.css ,Look for the css
.ja-moduletable ul li, .ja-module ul li, .ja-content-main ul li {
background: none repeat scroll 0 0 transparent;
padding-left: 0;
}
change to
.ja-moduletable ul li, .ja-module ul li, .ja-content-main ul li {
}
To get table boder showing try this
Open the file of plugins/system/jat3/base-themes/default/css/addons.css,Look for this
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
background: none repeat scroll 0 0 transparent;
border: 0 none;
font-size: 100%;
margin: 0;
outline: 0 none;
padding: 0;
}
and change to
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
background: none repeat scroll 0 0 transparent;
font-size: 100%;
margin: 0;
outline: 0 none;
padding: 0;
}
I hope this would help !