Elxis CMS Forum

Support => General => Topic started by: ROUBOS on January 12, 2010, 23:05:21

Title: Bullets do not work... [SOLVED]
Post by: ROUBOS on January 12, 2010, 23:05:21
Hi,
bullets don't work for me. They show up ok when editing content, but do not show in the browser. I have to use "-" part of my text to show bullet points

any thoughts?
Title: Re: Bullets "<ul><li></li></ul>" do nto work...
Post by: CREATIVE Options on January 12, 2010, 23:26:11
huh?

check your css
Title: Re: Bullets "<ul><li></li></ul>" do nto work...
Post by: ROUBOS on January 12, 2010, 23:29:44
using ul and li for my top menu
Title: Re: Bullets "<ul><li></li></ul>" do nto work...
Post by: CREATIVE Options on January 12, 2010, 23:47:25
So you would like to create a menu (top menu) with sub links.
Am I correct ?

If yes why are trying to do with hard code ?
Try the following module: http://www.elxis-downloads.com/com_downloads/menus/3.html
Title: Re: Bullets "<ul><li></li></ul>" do nto work...
Post by: ROUBOS on January 12, 2010, 23:49:23
I have created a menu and it is working.
lists don't show in my content.

Following is my only CSS dealing with styles:

/* top menu */
.top-navigation ul {
   overflow: hidden;
   margin: 0px;
   padding: 0px;
}
.top-navigation li {
   float:left;
   margin: 0px;
   padding: 0px;
}
.top-navigation li a, .navigation li a:visited {
   color: #ffffff;
   display: block;
   font: 1.5em sans-serif;
   line-height: 34px;
   padding: 0 20px;
   text-decoration: none;   
}
.top-navigation li a:hover {
   color: #e3a045;
}
.top-navigation li #active_menu-nav {
   color: #e3a045;
}


ul{
   list-style:circle;
     list-style-position: outside;
   color: #ffffff;
   text-indent: 5px;
}
Title: Re: Bullets "<ul><li></li></ul>" do nto work... [SOLVED]
Post by: ROUBOS on January 13, 2010, 00:22:32
fixed it. :)

had to use styles on li
and only on the content div so that they don't show on my menu.

sorry people and thanks for the replies