To exclude first (or N) documents from a selection of your listing web part like a repeater (according to the time of creation in this example) please fill the WHERE condition property as one below:
DocumentID NOT IN (SELECT TOP <number of excluded documents, e.g. 1> DocumentID FROM View_CMS_Tree_Joined WHERE ClassName = '<class name like CMS.News>' ORDER BY DocumentCreatedWhen DESC)