Hi Sheik Ahamath,
1- If you have Updated the Theme to a Newer Version (currently its VER- 1.1.4) then you control the Archive title label from “Appearance > Customize > Mags Pro Settings”, then you can check on to ‘Hide the Archive Title Label’. If you haven’t updated then you can find the Latest update File on Login Page under Downloads.
2- To remove the Author then please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
.entry-meta .author a {
display: none
}
.entry-meta > .date:after {
content: "";
}
3- To remove the Post Navigation then add the below Custom CSS code to the same ‘Additional CSS’ field mentioned before.
.navigation.post-navigation {
display: none;
}
4- To increase the Font size of Site Title then add the below Custom CSS code to the same ‘Additional CSS’ field mentioned before.
@media (min-width: 576px) {
.site-title {
font-size: 50px;
}
}
You can change the value of font size as you desired.
5- To make the Widget Title to normal then add the below Custom CSS code to the same ‘Additional CSS’ field mentioned before.
.page-template-front-page-template .site-main .widget-title,
.featured-stories .stories-title {
text-transform: inherit;
letter-spacing: 0;
}
Thanks