The pagination on wapkiz sites is given by the wapkiz :*page: tag, so we will include it within a div with page class.

<div class="page">:*page:s=:to-page:,c=12,u=?to-page=,no=only one page::%prev% %n% %next%:/page:</div>

Regardless of whether it is a blog, pages or files, it is given by the code above. 
To style the layout, we have some tips.

1. Any link is declared by the a tag, so to style it we will select it by css a.

Example: .page a{color:blue}

2. The active links or texts are not within the span tag, to style them we will style them with the css span selector.

Example: .page span{color: red}

Result
All pagination links will be blue, while active links and other non-link texts will be red.

Note: Remove all asterisk from the code. 

Leave your comment if you have any questions.