You are allowed to delete your post for 5 minutes after it's posted.
Delete
You must have a user account and be signed to perform this action.
define('PAGE_TITLE_FORMAT', '%1$s :: %2$s');
With the first parameter being the site name and the second being the page. So if you changed it to
define('PAGE_TITLE_FORMAT', '%2$s');
You'd just get page title names. If you changed it to
define('PAGE_TITLE_FORMAT', '%1$s - %2$s');
you'd replace the :: with -. Etc...