Forum Moderators: not2easy
I have a CSS site up (wow, really?), it has a sidebar to the left of links (for other pages in the site).
Now, one of the pages is legal mumbo-jumbo BS that lawyers force us to do.
As we all know, these bylaws need to have indentations etc..
So, I used a basic list,
<ul>
<li>Blah</li>
<ul>
<li>Something about Blah</li>
<li>Something more about Blah</li>
</ul>
<li>Another blah
And so on.
My issue is that while the list is next to the side bar, it does not indent, but when it is beyond that, the text moves back over to the left and it does properly indent.
Could it be that since it's already indented (from the sidebar) that it won't indent again? How can I get around this?
Thank you!
Edit:
Just did one section of the page and it did not help.
OK, so what happened to the days of simple lists, you know,
<ul>
<li>Blah
<ol>
<li>Something about blah
and so on, no closing, etc.. :S
So, it does seem that the browser is perceiving the indent, from the sidebar, as a list indent, also, therefore not indenting the first 3 lists.
Time to do some playing...
(Edit:)
YESS!
I just put in a <table> at the beginning and a </table> at the end and it works perfectly now! Woohoo!