Currently i have a drop down menu with custom graphic bullet points. In the design it shows the link wrapping, but not under bullet. Is there a way to keep this from happening?
I don't exactly know what you mean. I can see the link is wrapping, placing the word "Series" on the same indentation as the custom ">" (on a Mac, Safari). If you'd like it to continue as in a usual list, your CSS list-style-position should be set to "outside".
I think this has something to do with the paddings and margins. Have you tried setting both to zero and altering them when needed? So in the body, or main_nav:
Code:
padding: 0px;
margin: 0px;
and in the li selector:
Code:
#main_nav li ul li {
padding:0px 0px 0px 30px;
}
You may also want to try using a margin instead of a padding.
Users who have thanked joerivanveen for this post:
I think this has something to do with the paddings and margins. Have you tried setting both to zero and altering them when needed? So in the body, or main_nav:
Code:
padding: 0px;
margin: 0px;
and in the li selector:
Code:
#main_nav li ul li {
padding:0px 0px 0px 30px;
}
You may also want to try using a margin instead of a padding.
Brain fart i guess. I used margin instead. Thanks!