|
Unordered lists in Transparent Bliss 4 Years, 1 Month ago
|
Karma: 0
|
|
I have installed the very attractive Tranparent Bliss template for my Joomla 1.5 site. But when I designate some text as an unordered list, it appears exactly as the regular BODY text appears...
Am I missing something? I am a fairly neophite Joomla user and CSS writer, but I don't see an active <ul> designation in the css for this template.
Any help would be greatly appreciated.
|
|
|
|
|
|
|
Re:Unordered lists in Transparent Bliss 4 Years, 1 Month ago
|
Karma: 0
|
Go to and find this:
| Code: |
h1, h2, h3, h4, p, ul, li, .poll, table.contentpan
eopen {
margin: 0px;
padding: 0px;
border:0px;
list-style-type:none; <---------
font-size:12px;
}
|
then you can change it:
| Code: |
h1, h2, h3, h4, p, ul, li, .poll, table.contentpan
eopen {
margin: 0px;
padding: 0px;
border:0px;
/*list-style-type:none;*/ <-----
font-size:12px;
}
|
B)
Post edited by: cyberstorm007@o2.pl, at: 2008/04/15 10:00<br><br>Post edited by: cyberstorm007@o2.pl, at: 2008/04/15 10:01
|
|
|
|
|
|
|
Re:Unordered lists in Transparent Bliss 4 Years ago
|
Karma: 0
|
|
I changed this piece of kode but nothing happens, still no unordered lists! The bullet is not showing.
How can I correct this?
Gert
|
|
|
|
|
|
|
Re:Unordered lists in Transparent Bliss 3 Years, 9 Months ago
|
Karma: 0
|
|
I am also having the same problem with unordered lists showing as normal text. Has anyone found the solution in the template css for this issue ? Commenting out the list-style is not the solution.
|
|
|
|
|
|
|
Re:Unordered lists in Transparent Bliss 3 Years, 9 Months ago
|
Karma: 0
|
|
Update
I somehow managed to get UL in articles to work in Transparent Bliss with firefox but still a no-go in IE7
No clue as of yet on what I am missing in the css that would work in firefox but not ie7
|
|
|
|
|
|
|
Re:Unordered lists in Transparent Bliss 3 Years, 9 Months ago
|
Karma: 0
|
Hopefully my solution will be what you're also looking for.
1) Replace :
| Code: |
h1, h2, h3, h4, p, ul, li, .poll, table.contentpan
eopen {
margin: 0px;
padding: 0px;
border:0px;
list-style-type:none;
font-size:12px;
}
|
with :
| Code: |
h1, h2, h3, h4, p, ul, li, .poll, table.contentpan
eopen {
margin: 0px;
border:0px;
font-size:12px;
}
|
Explination:
-removing "list-style-type:none;" gives you the bullets
-removing "padding: 0px;" gives you the... padding :laugh: (as in allignment)
2) Removing "padding: 0px;" also makes the menus look ugly (out of place , more to the right).
To solve that replace :
| Code: |
ul.menu {
padding-bottom: 15px;
border-top-width: 1px;
border-top-style: dotted;
border-top-color: #666666;
}
|
with
| Code: |
ul.menu {
padding-left: 0px;
padding-bottom: 15px;
border-top-width: 1px;
border-top-style: dotted;
border-top-color: #666666;
}
|
Awaiting comments.<br><br>Post edited by: ThunderM, at: 2008/08/12 13:46
|
|
|
|
|
|
|
Re:Unordered lists in Transparent Bliss 3 Years ago
|
Karma: 0
|
|
Hi,
I've the same issue. When I apply the fix then it works great in Firefox, but not completely in IE7. The bullets indeed don't show up in IE7, but a numbered list does work.
Also when I've a layered menu, the submenu's don't show up correctly if I delete the padding: 0px;, even if I put it back at left menu.
Thanks, Rob
|
|
info
Fresh Boarder
Posts: 9
|
|
Last Edit: 2009/05/05 14:03 By info.
|
|
|