Link to home
Start Free TrialLog in
Avatar of Melody Scott
Melody ScottFlag for United States of America

asked on

Bootstrap- have <li> dots on side nav, want to get rid of them

Hi, on this site: mkmeals.com/responsive/

Please look at the left side navigation. I want to get rid of these:
User generated image
I'm not sure what I did wrong, and developer tools only tell me that the color comes from body.
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland 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
Avatar of Melody Scott

ASKER

Thanks!
Took me  a while, but I found it. Thanks! I found that ul ol in bootstrapmin,css had no style except a margin. So in my custom stylesheet I put: .ulside {
    margin-bottom: 10px;
      list-style:none;
}

and renamed the unordered list for the side navigation: <ul class="navside2 nav-stacked2 ulside" id="sidebar">

And that worked. Thanks!