Elxis CMS Forum
Support => General => Topic started 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?
-
huh?
check your css
-
using ul and li for my top menu
-
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
-
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;
}
-
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