Link to home
Start Free TrialLog in
Avatar of Donnie Walker
Donnie WalkerFlag for United States of America

asked on

How do I get <ul> style bullets to work on this Wordpress theme?

I have a site here:

http://www.plumthree.com/numbernine

and I need the <ul><li> style bullets to work on the blue box on the right.

I suspect it is because the menu uses them and it is hiding them.

Thanks
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Not quite.

The li tag is reset to show nothing:

li {
    list-style: none outside none;
}

So if you change that in styles.css (line 16) to something like:

li {
    margin-left: 10px;
}

you'll get the bullets back with some indenting.
Avatar of Donnie Walker

ASKER

yes, but when I do that it also indents the top menu.
ASKER CERTIFIED SOLUTION
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
great! thanks!