Quote Originally Posted by shags38 View Post
Hi Anne,

how can I centre the Table of Contents for EZ pages? - I have a number of articles in a Chapter in EZ pages and the table comes up but is justified far right of page - how do I change the justification of the table?

cheers,
Mike



The fix for centering the Table of Contents in EZ Pages is to go to includes/templates/abbington_mega/common/css/stylesheet.css , then at about line 96 under /*bof ezpages*/ first line change float: right to read float: center

the above applies to any template, change abbington_mega to read 'YOUR TEMPLATE' (but why would you use any other template than Abbington Mega? :)

cheers,
Mike

I don't think that there is a "center" definition for the 'float' attibute. I think you might wanna try this instead (soneone can confirm this for me):
Code:
margin-left: auto;
margin-right: auto;
or
Code:
margin: auto;