No bullets showing in Boutique

Feel free to talk about everything related to our Joomla Products
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Wed Apr 04, 2012 5:19 am
Hello,
I have worked through all forum posts but seem not to be able to find a solution.
Bullets nor any list simply do not show. Latest template is loaded. See where code is present but bullets won't show

http://www.wct-dev01.info/index.php?opt ... Itemid=551

Can somebody give me some leads to resolve a very basic missing feature?

Nic
User avatar
Fresh Boarder

GK User
Wed Apr 04, 2012 1:54 pm
Can you please check typography is enabled in template settings.

Joomla Control Panel > Extensions > Template Manager > GK Boutique Default > Typography > Use typography = "On"

See you around...
User avatar
Platinum Boarder

GK User
Thu Jan 03, 2013 1:38 pm
normanUK wrote:Can you please check typography is enabled in template settings.

Joomla Control Panel > Extensions > Template Manager > GK Boutique Default > Typography > Use typography = "On"

See you around...


Tested in IE and Firefox. Great templates! - but I always have problems with bullets in K2 with all your templates and always have to add code to override.css to get a STANDARD HTML ul li bullets to show.

There are many posts in this forum and the web about this. Could we not have a simple fix generic fix put into the templates for this?

Also, In Boutique, I cannot get any of the gkCircle1 2 etc to show - but the gkBullets do - even if I cut and paste the source from your demo page.
User avatar
Fresh Boarder

GK User
Thu Jan 03, 2013 2:07 pm
JohnnyC1951 wrote:
Tested in IE and Firefox. Great templates! - but I always have problems with bullets in K2 with all your templates and always have to add code to override.css to get a STANDARD HTML ul li bullets to show.

I hope this helps.

I have found the problem for the circles not showing...

In the files typography.style1.css typography.style2.css and typography.style3.css..

The bullets which do show look like this

Code: Select all
ul.gkBullet1 li,div.articleContent ul li, div.productdetails-view ul li {


The ones that DONT SHOW look like this (because K2 doesn't have divs with class "article-content"):
Code: Select all
div.articleContent ul.gkBullet2 li {


This part is missing:
Code: Select all
ul.gkBullet1 li,


This explains why they dont show up in K2.

I looked at several templates and they are all the same.

To get the generic ul li working I had to modify it like this by adding ul li,:
Code: Select all
/* unordered lists */
ul li,ul.gkBullet1,ul.gkBullet2,ul.gkBullet3,ul.gkBullet4,ul.gkCircle1,ul.gkCircle2,ul.gkSquare1,ul.gkSquare2,ul.gkSquare3 ,div.articleContent ul,
div.productdetails-view ul {
   margin: 2em 0;
   padding: 0;
}

ul li {
   list-style-position: outside;
}

ul li, ul.gkBullet1 li,ul.gkBullet2 li,ul.gkBullet3 li,ul.gkBullet4 li,ul.gkCircle1 li,ul.gkCircle2 li,ul.gkSquare1 li,ul.gkSquare2 li,div.articleContent ul li, div.productdetails-view ul li {
   margin: 0 !important;
   padding: 2px 0 2px 28px;
   line-height: 1.8em !important;
   list-style-position: inside;
   overflow: inherit;
}
User avatar
Fresh Boarder


cron