<center>
<?php
include("widgets/accuwidget.php");
?>
</center>
This however fails CSS3 so I moved it to the CSS like this,
on the page:
<div id="accuwidget">
<?php
include("widgets/accuwidget.php");
?>
</div><!-- accuwidget -->
and on the CSS:
#accuwidget {text-align:center;}
However this seems to be a bit hit and miss. It centers the forecast widget on this page but not on this page.
The CSS is the same for both except the div name:
#accuwidget {text-align:center;}
#metwidget {text-align:center;}
Any ideas why one behaves and one does not?