Remove the date call from your page template.
I don’t know how to do that :S
Do you have a page.php template file in your theme?
1. If yes, edit it – delete any references to the_time or the_date.
2. If you don’t have a page.php > save your index.php as page.php … and see #1 above 🙂
More: Pages
so, i manually need to delete the time and date? i think my theme is index.php….
I would recommend hitting the codex or searching here about creating a separate page.php for pages rather than trying to add conditional php code so the index page displays the date for posts but not pages.
i’m really confused now…i didn’t think it’d be that hard :S….
It is not hard. Evidently you are using a theme that is rather “basic” and does not have a page.php to use as a template. Currently the same code is used to display posts as pages (index.php).
Once you create a page template: http://codex.wordpress.org/Pages#Page_Templates
you will be able to do what you want with it and not worry about how it will affect the display of normal posts.
Someone posted an example of their page.php:
http://wordpress.org/support/topic/24087#post-156486
Hmmm okay. I’ll work on that tomorrow. Thanks :).