Bullet points in K2 items not working

Responsive Joomla template for Entertainment and Music purpose with clean and lightweight design.
GK User
Thu Nov 15, 2012 9:45 am
Hi,

My site: http://www.jorendekoning.nl

Bullet points in k2 items are not working. See an example:

http://www.jorendekoning.nl/index.php/s ... idende-rol

I already tried to add some code and updated to the last template but nothing is working. I have also switched to different editors but nothing worked:

This is what I see on the backeind: http://i1173.photobucket.com/albums/r59 ... error3.jpg
This is what it looks like: http://i1173.photobucket.com/albums/r59 ... ror2-1.jpg
User avatar
Expert Boarder

Konrad M
Thu Nov 15, 2012 2:47 pm
Hi
please add this code to css/typography.style1.css at the bottom after last selector:
Code: Select all
#k2Container.itemView .itemFullText ul {
  list-style:disc !important;
}
#k2Container.itemView .itemFullText ul li {
  list-style-position: inside !important;
}
User avatar

GK User
Thu Nov 15, 2012 7:30 pm
It is working! Thank you. Only thing is the numbered list:

Example:

1.
2.
3.
4.
5.

Do you got code for this?

Thanks!
User avatar
Expert Boarder

GK User
Thu Nov 15, 2012 7:34 pm
Plus. One last thing. It seems that the line space between the sentences are different.

See here: http://www.jorendekoning.nl/index.php/s ... idende-rol

First check the normal lines and then the lines with bullet points? How can I reduce that?
User avatar
Expert Boarder

Konrad M
Fri Nov 16, 2012 10:05 am
About last please add to override.css
Code: Select all
#k2Container.itemView .itemFullText ul li {
line-height: 1.8 !important;
}

To show numbers please add to typography.style1.css
Code: Select all
#k2Container.itemView .itemFullText ol {
  list-style:decimal !important;
}
#k2Container.itemView .itemFullText ol li {
  list-style-position: inside !important;
}
User avatar

GK User
Fri Nov 16, 2012 10:42 am
It is working! Thank you so much!
User avatar
Expert Boarder


cron