Bullets and Numbering bot appearing

Responsive Joomla template for Entertainment and Music purpose with clean and lightweight design.
GK User
Wed Aug 29, 2012 11:46 am
Hi

I'm using the Music template with a Joomla 2.5.6 installation.

I have noticed that the bullets and numbering entered into my articles, although saved in the backend editor (both TinyMCE and JCE tried), are not appearing on the frontend.

Any ideas on how to solve this?

Cheers

ginniss
User avatar
Senior Boarder

GK User
Wed Aug 29, 2012 4:54 pm
Are you using the template typography plugin or standard OL/UL elements?
User avatar
Administrator

GK User
Thu Aug 30, 2012 3:13 pm
Hi dziudek

I am using the typography plugin (also enabled in template settings).

ginniss
User avatar
Senior Boarder

GK User
Thu Aug 30, 2012 3:28 pm
Do you have this website online? Can I look at it?
User avatar
Administrator

GK User
Fri Aug 31, 2012 3:31 pm
Hi dziudek

The website is currently offline.

I will send you login details via pm.

Regards

ginniss
User avatar
Senior Boarder

GK User
Sat Sep 01, 2012 9:22 am
Default ol elements have no list-style-type, that's why you should use the built-in gkRoman, gkDec and others classes from the typography. But if you need to have a bullets with the OL elements without classes, then please add in the template.css file following code:
Code: Select all
ol {
    list-style-type: decimal;
    list-style-position: outside;
    margin-left: 25px;
}
User avatar
Administrator

GK User
Tue Sep 04, 2012 9:28 am
dziudek

Many thanks for the reply.

Forgive my ignorance, but how do you apply the typography classes?

Regards

ginniss
User avatar
Senior Boarder

GK User
Tue Sep 04, 2012 9:30 am
In general there are two ways to apply the typography classes - you can use the typography plugin or put it manually.
User avatar
Administrator

GK User
Tue Sep 04, 2012 2:59 pm
dziudek

I have the "Button GKTypography" active (typography also activated in the template), with preset GK-Music xml.full. This doesn't seem to help.

Is there another plugin or am I missing something?

Regards

ginniss
User avatar
Senior Boarder

GK User
Tue Sep 04, 2012 3:06 pm
Are you using TinyMCE or JCE editor? Our plugin is compatible with TinyMCE only.
User avatar
Administrator

GK User
Tue Sep 04, 2012 3:48 pm
I am using TinyMCE.
User avatar
Senior Boarder

GK User
Tue Sep 04, 2012 4:08 pm
Do you have some JavaScript errors in your console?
User avatar
Administrator

GK User
Tue Sep 04, 2012 4:49 pm
Hi dziudek

No errors. Only some warnings:

Use of getAttributeNode() is deprecated. Use getAttribute() instead.
try {$Gavick;}catch(e){$Gavick = {};};

Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead.

Use of getAttributeNode() is deprecated. Use getAttribute() instead.
try {$Gavick;}catch(e){$Gavick = {};};

Regards

ginniss
User avatar
Senior Boarder

GK User
Tue Sep 04, 2012 6:15 pm
Could you send me administrator access to your website via PM? I have to see it.
User avatar
Administrator

GK User
Wed Sep 05, 2012 10:55 am
I've checked your page in the my Chrome browser and the typography plugin works fine - it adds the typography elements, but of course it does this function only in the WYSIWYG mode - if you're using it on the HTML mode then it won't work.
User avatar
Administrator

GK User
Wed Sep 05, 2012 12:11 pm
Sorry dziudek

I'm not sure what you mean with regard to html versus wysiwyg mode.

I've checked the link in chrome, firefox, IE and Safari on both a Windows and iOS machine but see no bullets/numbering.

Are you referring to a Joomla backend setting?

ginniss
User avatar
Senior Boarder

GK User
Thu Sep 06, 2012 6:18 am
You haven't see the bullets because nor you haven't used the template typography elemenets not you haven't placed the mentioned code in the template.css as I recommend earlier:

Code: Select all
ol {
    list-style-type: decimal;
    list-style-position: outside;
    margin-left: 25px;
}
User avatar
Administrator

GK User
Thu Sep 06, 2012 9:44 am
Dziudek

Thanks for you patience with this.

Unfortunately, still not luck.

I have applied the CSS code as you suggest. Typography is activated in the template. The Button Typography plugin is activated.

What am I missing? You mention using/applying typography classes. How to you do this?

ginniss
User avatar
Senior Boarder

GK User
Thu Sep 06, 2012 2:10 pm
Applying css class means transform code:

Code: Select all
<ol>


to in example:

Code: Select all
<ol class="gkRoman">
User avatar
Administrator

GK User
Mon Sep 10, 2012 8:48 am
Hi dziudek

I have got things to work at an individual items level - manually applying the style attributes to the HTML code. However, this is far from an ideal solution on a site which mainly includes user content.

Consequently, I have applied a template override for <OL> items that works OK for automatically applying list numbering. However, I still have a problem with <UL> items. Any overrides I apply also effect other core template elements, e.g. the main menu format. Any ideas how to solve this?

Regards

ginniss
User avatar
Senior Boarder

GK User
Mon Sep 10, 2012 11:07 am
You can always limit your changes to the specific range of the elements i.e. applying the #gkMainbody before ul in the selector:

Code: Select all
#gkMainbody ul
User avatar
Administrator

GK User
Mon Sep 10, 2012 12:10 pm
Many Thanks dziudek

Everything working perfectly.

ginniss
User avatar
Senior Boarder


cron