General template list (ul li) bug

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
Thu Jun 14, 2012 4:43 pm
Hi,

I used the corporate2 and financial template in order to see whether this bug is template based - it seems it is not:

When I make a list in the editor the template will not show me in the article:
- list-buttons
- text-inside the list

I only see a difference in line-height.

Please see: http://web822.webbox239.server-home.org ... tart/ver01

Menu link "list1" and "list2" show the same page. list1 with corporate2 template, list2 with buzz joomla template. list2 is correct, list1 is not.

So, when I use a sitemap that uses lists I get the same problem: No list buttons and also no submenu points. Please compare sitemap1 and sitemap2 - especially submenu "news".


I hope you understand and can provide me with a solution.

thank you!
User avatar
Expert Boarder

Konrad M
Mon Jun 18, 2012 1:04 pm
Hi,
please try add this to override.css
Code: Select all
.item-page li {
list-style-type: square;
list-style-position: inside;
}

and remember to enable override.css option in template settings.
User avatar

GK User
Tue Jun 19, 2012 8:16 am
Hi,

just works a bit: The list shows squares, but it still is not a correct list - the second line starts earlier than the first - please compare list1 list2.

The sitemap does not work at all :-(

Please help me with this issue as I want to use a sitemap. The issue appears on several templates. Seems to be a coding error.

thanks!
User avatar
Expert Boarder

Konrad M
Wed Jun 20, 2012 9:33 am
Please change earlier I gave you to this one.
Code: Select all
.item-page ul,
#xmap ul.level_0,
#xmap ul.level_1 {
margin-left:15px;
}
.item-page li,
#xmap ul li {
list-style-type: square;
list-style-position: outside;
}
ul.pagenav li {
list-style-type: none !important;
}
User avatar

GK User
Thu Jun 21, 2012 8:53 am
This works pretty good! Thank you!

I switched to K2 and added:

Code: Select all
#k2Container ul li{
list-style-position: outside!important;
margin-left: 15px;
line-height: 1.5em !important;
list-style-type: square;
}


Works fine in this template. But in the financial template the picture of a comment is out of the box:
http://beta.bm-od.com/aktuelles/item/27 ... m-webseite

It is the
Code: Select all
margin-left: 15px;
which affects the comment section as well. How can I prevent this code to be valid for the comment section?

Sorry I am a css newbie.

I really appreciate your help!
User avatar
Expert Boarder

Konrad M
Thu Jun 21, 2012 11:09 am
Add this code to the override.css at the bottom after last selector
Code: Select all
.itemComments ul.itemCommentsList li {
margin-left: 80px !important;
line-height: 1.8em !important;
list-style-type: none !important;
}

should fix issue in financial template with picture of a comment.
User avatar

GK User
Thu Jun 21, 2012 3:32 pm
great! works! thank you very much!
User avatar
Expert Boarder


cron