Originally Posted by MoragB
|
I'd be so grateful for some help - I'd like to make my web pages smaller & centered. I've tried opening the html file and inserting align='center' before the <table...> section (and also within the table section too, but it's not working.... 
So, what am I doing wrong? How can I make my web pages smaller & centered??
|
Here is sample code for making web content centered:
<html>
<head></head>
<body>
<center> /* This is for the whole table to go in center of the page */
<table bgcolor="gray" width="500" height="300" >
<tr align="center">
<td>This table and its text is centered aligned</td>
</tr>
</table>
</center>
</body>
</html>
Please use align tag in every row of the table to make content centered aligned.
If you still have problem, please paste your code.
HTH.