Is the first ul a direct descendant of the body? I know that you said that you are not adding css classes to the code, but I believe that adding material to the stylesheet does not exclude the question? If so, you can use a style declaration, for example:
body > ul{ margin-left:0px; }
or if you know the div, it is inside:
#your_id > ul{ margin-left:0px; }
A default addition may also be required.
thanks
source share