Changing the font size does not work
Please go to jsn-glamo/css/template.css at line 285, and change from:
#jsn-page { color: #555; width: 100%; font-size: 13px; overflow: hidden; }
to:
#jsn-page { color: #555; width: 100%; overflow: hidden; }
Bullets not displaying by default
JSN-staff: This no bullet is Template design, not a bug of JSN Glamo, but if you want to have this in your site, please add my css below to custom.css ( in templates/jsn-glamo/css ) :
ul li { list-style: inherit !important; margin: 0.3em 0 0.3em 1.6em !important; }
My Notes
This is a stupid thing to disable bullet points in a template. who does that? what is the point? it is just the same as using a <br />. The bullet points have been disabled by CSS code in the template.css (line 136)
/* =============== DEFAULT HTML - LIST STYLES =============== */ ul li { padding: 0; list-style: none; } ol li { padding: 0; margin: 0.3em 0 0.3em 2em; }
This needs to be changed because it screws up using bullet points but also the WYSIWYG. Please turn on bullet points for later version of Glamo
To Fix this
in template.css Rem out this code block starting at line 136 (this allows the bullets to be shown)
/* =============== DEFAULT HTML - LIST STYLES =============== */ ul li { padding: 0; list-style: none; } ol li { padding: 0; margin: 0.3em 0 0.3em 2em; }
and remove ol and ul from the code block starting line 18 in template.css (this corrects the margins)
/* =============== DEFAULT HTML - TEXT STYLES =============== */ p, pre, blockquote, form, dl, ul, ol, fieldset, address, table { padding: 0; margin: 10px 0; }