Whenever a an ordered list is shown, it is pushed to far to the left. Specifically when used in comments the numbers appear outside of the framed comment box. I have tried edting the layout.css #primary .singlepage .node .content ol li - but with little success.

Any help is greatly appreciated!

I have attached an image for reference.

Thanks,
Jeff

CommentFileSizeAuthor
#4 Picture 1.png367.13 KBBeMathis
ordered list format.jpg31.41 KBjeffreychulick

Comments

jeffreychulick’s picture

With the help of firebug I was able to track down the correct CSS string... So I pushed both OL and UL to the right 20px using the following...

#comments .content ol{margin:0px 0px 0px 20px;}
#comments .content ul{margin:0px 0px 0px 20px;}

Seems to fix the issue. Would love to know if I am missing something and there was another TAG I should have edited vs. adding the above.

Thx,
Jeff

Lioz’s picture

Status: Active » Fixed

fixed in 6x-295

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

BeMathis’s picture

Version: 6.x-2.94 » 6.x-2.95
Status: Closed (fixed) » Needs work
StatusFileSize
new367.13 KB

This is still a problem in 6.x-2.95 my ordered lists are not aligning correctly and the fix above does not seem to work.

BeMathis’s picture

Status: Needs work » Fixed

Fix:
insert the following into sites/all/themes/marinelli/graphics.css at the top of the page

/*The following is setup to repair list indentation within the singlepage div*/

#primary .singlepage ol{margin:10px 30px;}
#primary .singlepage ul{margin:10px 30px;}

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.