Hi !
I am designing custom templates for cpts.As they includes more information and different layout than post/page cpt, I want to zoom out to it 85%.By setting zoom level to 85% in browser my cpt layout looks good.But I dont have any idea how to set it by default.
So any Idea?
Hi @shriyash802,
Thanks for reaching out.
Are you referring to zoom feature of the browser? It’s not possible since it’s browser specific. Maybe scaling would work but it would require customization, you may try consulting it to a developer for further information.
Thanks!
Plz can you give me some more idea about Scaling.It can give me some direction…
Hi @shriyash802,
Please check this https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scale
You can apply the scaling to any layout and element, the problem is the structure. I can’t really recommend any specific CSS since it’s complex. But it could be something like this
body {
transform: scale(0.7);
}
It could cause issues so I recommend contacting a developer. And we can’t provide custom development in the forum.
Thanks!
Thanks.This will guide me for development.
You’re welcome. Just note that we will not support issues that will arise from the use of custom codes here in the forum.
Thank you for understanding.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.