You can have maximum of 10 list view filters
If more filters are required you need to override the page with VF page
You can have maximum of 10 list view filters
If more filters are required you need to override the page with VF page
If you want to move the content dynamically in the PDF page when the content does not fit in the PDF.
See below screenshot where opportunity table doesn’t fit into the PDF page

You want to achieve below screenshot

Use CSS page-break-after Property
style=”page-break-after:always;” inside div tag
View state has a limit of 135k
Best Practices to optimize your view state
What is View state:
View state maintains the state of the page by encompassing encrypted and hidden field
HTTP is a stateless protocol which means every request which is being sent and received is an independent request
Example: You filled in a contact form on website and clicked submit, after submitting you might have identified that an error has popped up “your mobile number should have area code” and all the data which you have filled in the form have vanished and you must refill the form again.
This happened because HTTP is stateless protocol and no state was maintained to save that data.
Salesforce encapsulates encrypted and hidden field to hold the state of the page
State includes field values, controller state
When Post/Postback is received State view is responsible to recreate the state of the page
It stores following data :
1) All non-transient data members used in the controller and extensions
2) Component tree
3) Small amount of data for VF