Archived topic
Use of element
1 reply · Started by domedele on October 30, 2019
I note that with element I can change the padding between menu and blog post title.
I'm not sure is intuitive approach because i dedicate more time to found padding in menu and header apparence items.
The first question is can I delete the post title for a page and keep the title for a blog post?
Anyway can I build with element a template of post type? Could I define every aspect (i.e. font, editing and so on?)
I receive many text in word or google doc and i want a cut and copy of the post avoid editing test
Thanks
Hi there,
The first question is can I delete the post title for a page and keep the title for a blog post
Not quite sure what you mean. Does something like this help?
https://docs.generatepress.com/article/disable-elements-overview/
If not can you guide me to the page in question?
Anyway can I build with element a template of post type? Could I define every aspect (i.e. font, editing and so on?)
You could try just using HTML and classes:
<div class="page-hero-style">
content
</div>
Then target it with CSS like this:
.page-hero-style {
font-size: 20px;
color: #000;
}
Let me know if this helps :)